Guest User

Untitled

a guest
Nov 20th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public void initChart(){
  2. BarChart chart = (BarChart) findViewById(R.id.chart);
  3. BarData data = new BarData(getXAxisValues(), getDataSet());
  4. chart.setData(data);
  5. chart.setDescription("Performance Chart");
  6. chart.animateXY(2000, 2000);
  7. chart.invalidate();
  8. }
Add Comment
Please, Sign In to add comment