Skip to content

Commit

Permalink
Merge pull request #1648 from liuxuan30/fix0Date
Browse files Browse the repository at this point in the history
fix bar chart in demo that date starts at 0
  • Loading branch information
danielgindi authored Oct 18, 2016
2 parents 47bc8f9 + ac88607 commit d503733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ChartsDemo/Classes/Demos/BarChartViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ - (void)updateChartData

- (void)setDataCount:(int)count range:(double)range
{
double start = 0.0;
double start = 1.0;

NSMutableArray *yVals = [[NSMutableArray alloc] init];

Expand Down

0 comments on commit d503733

Please sign in to comment.