Skip to content

Commit

Permalink
Code cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilJay committed Jul 24, 2015
1 parent 8d529bd commit 5d19d4b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ private void setData(int count, float range) {
for (int i = 0; i < count; i++) {
float mult = (range + 1);
float val = (float) (Math.random() * mult);
yVals1.add(new BarEntry(new float[] {val, val+5, val+5,val+5}, i));
yVals1.add(new BarEntry(val, i));
}

BarDataSet set1 = new BarDataSet(yVals1, "DataSet");
Expand Down

0 comments on commit 5d19d4b

Please sign in to comment.