Skip to content

Kafka2/GraphKit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GraphKit

License MIT CocoaPods License MIT

A lightweight library of animated charts for iOS.

License

Source code of this project is available under the standard MIT license. Please see the license file.

Usage

Bar Graph

Build Platform

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;
- (CFTimeInterval)animationDurationForBarAtIndex:(NSInteger)index;
- (NSString *)titleForBarAtIndex:(NSInteger)index;

Line Graph

Build Platform

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;

About

A lightweight library of animated graphs for iOS.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 94.6%
  • Shell 2.9%
  • C 1.8%
  • Ruby 0.7%