We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In JBBarChartView.m you have the following line:
NSAssert(height > 0, @"JBBarChartView // datasource function - (CGFloat)barChartView:(JBBarChartView *)barChartView heightForBarViewAtAtIndex:(NSUInteger)index must return a CGFloat >= 0");
The assert tests if height is greater than zero, the message says >= 0
If you pass a 0 for the height (perfectly valid height) the app crashes.
The text was updated successfully, but these errors were encountered:
Fixed issue #22
d3a1ce1
Good catch! Sorry about that one. Fixed in commit: d3a1ce1
Sorry, something went wrong.
No branches or pull requests
In JBBarChartView.m you have the following line:
The assert tests if height is greater than zero, the message says >= 0
If you pass a 0 for the height (perfectly valid height) the app crashes.
The text was updated successfully, but these errors were encountered: