iOS Chart. Support animation, click, scroll, area highlight.
XJYChart - A High-performance, Elegant, Easy-to-integrate Charting Framework.
The Best iOS Objc Charts.
XJYChart is available through CocoaPods. To install
it, simply add the following line to your Podfile:
pod "XJYChart"
Then, run the following command:
$ pod install
Qucikly Use
Eg:
Initialization
- (instancetype)initWithFrame:(CGRect)frame
dataItemArray:(NSMutableArray<XLineChartItem*>*)dataItemArray
dataDiscribeArray:(NSMutableArray<NSString*>*)dataDiscribeArray
topNumber:(NSNumber*)topNumbser
bottomNumber:(NSNumber*)bottomNumber
graphMode:(XLineGraphMode)graphMode
chartConfiguration:(XLineChartConfiguration*)configuration;
Chart Data
- (instancetype)initWithDataNumberArray:(NSMutableArray*)numberArray
color:(UIColor*)color;
Chart Configuration
XNormalLineChartConfiguration* configuration =
[[XNormalLineChartConfiguration alloc] init];
configuration.lineMode = CurveLine;
configuration.isShowShadow = YES;
XJYChart is available under the MIT license. See the LICENSE file for more info.