CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ | 
| LangLanguage | Obj-CObjective C | 
| License | MIT | 
| ReleasedLast Release | Dec 2014 | 
Maintained by Michal Konturek.
| Depends on: | |
| FrameAccessor | ~> 1.3.2 | 
| MKFoundationKit/NSArray | ~> 1.2.2 | 
A lightweight library of animated charts for iOS.
Source code of this project is available under the standard MIT license. Please see the license file.
To see a quick demo, simply type pod try GraphKit.
Initialize GKBarGraph from nib or programmatically:
CGRect frame = CGRectMake(0, 40, 320, 200);
self.graphView = [[GKBarGraph alloc] initWithFrame:frame];then set GKGraphViewDataSource 
self.graphView.dataSource = self;and call draw method.
[self.graphView draw];Please see example.
GKBarGraphDataSource Protocol@required
- (NSInteger)numberOfBars;
- (NSNumber *)valueForBarAtIndex:(NSInteger)index;
@optional
- (UIColor *)colorForBarAtIndex:(NSInteger)index;
- (UIColor *)colorForBarBackgroundAtIndex:(NSInteger)index;
- (CFTimeInterval)animationDurationForBarAtIndex:(NSInteger)index;
- (NSString *)titleForBarAtIndex:(NSInteger)index;CGRect frame = CGRectMake(0, 40, 320, 200);
self.graphView = [[GKLineGraph alloc] initWithFrame:frame];
self.graph.dataSource = self;
self.graph.lineWidth = 3.0;
[self.graph draw];Please see example.
GKLineGraphDataSource Protocol@required
- (NSInteger)numberOfLines;
- (UIColor *)colorForLineAtIndex:(NSInteger)index;
- (NSArray *)valuesForLineAtIndex:(NSInteger)index;
@optional
- (CFTimeInterval)animationDurationForLineAtIndex:(NSInteger)index;
- (NSString *)titleForLineAtIndex:(NSInteger)index;git checkout -b new-feature).git commit -am 'Added new-feature').git push origin new-feature).