GraphKit
GraphKit copied to clipboard
A lightweight library of animated graphs for iOS.
I have to draw day, week, month and year graph in segmented view and when I try to change the segment tab just need to reset the graph lines and...
Possible to make the edges (point to point) smooth so it flows like a nice curve?
In the _positionYForLineValue method, the denominator ([self _maxValue] - [self _minValue]) may have 0 value. In this case, exception arise for NaN. The fix should be: ``` int diff =...
- Added touch support to GKLineGraph (see demo for an example) - Added delegate to detect touches in GKLineGraph - Added support to configure the line-dashpattern of the gridlines in...
Hi, Am trying to draw a multi-line graph, what i have noticed is, if the data set have same number if values then only line will be drawn complete, i...
Hi, I have a chart with a single line I set startFromZero as true I set data values to [0,0] you then get **\* Terminating app due to uncaught exception...
Great job! I think if the value of the bar shown in the left side, it would be more intuitive, just like GKLineGraph.
Now performs check for the dataSource to respond to the selector before actually creating/positioning the labels. Should fix: #16 WARNING: I haven't tested the fix locally, so you will want...
the datasource delegate specifies ``` @optional - (UIColor *)colorForBarAtIndex:(NSInteger)index; - (UIColor *)colorForBarBackgroundAtIndex:(NSInteger)index; - (CFTimeInterval)animationDurationForBarAtIndex:(NSInteger)index; - (NSString *)titleForBarAtIndex:(NSInteger)index; ``` however in it is being treated as required in the code..
Implemented logic to be able to change the font colour, font size or font name on either the Bar Graph or Line Graph.