https://github.com/AAChartModel/AAChartKit-Swift
https://github.com/AAChartModel/AAChartKit/blob/master/CHINESE-README.md
- Support
iOS 6
、ARC
&Objective C
. - Powerful,support the
column chart
bar chart
line chart
spline chart
pie chart
polar chart
radar chart
and other graphics. - Interactive、animated,the
animation
is exquisite and deligate. - Support
chain programming syntax
like Masonry AAChartView + AAChartModel = Chart
In the AAChartKit,it follows a minimalist formula:Chart view + Chart model = The chart you want
.
- Drag the folder
AAChartKitFiles
into your project.
1.Add the following content into your view controller
file.
#import "AAChartView.h"
2.Creat the object of chart view:AAChartView
AAChartView *chartView = [[AAChartView alloc]init];
self.view.backgroundColor = [UIColor whiteColor];
chartView.frame = CGRectMake(0, 60, self.view.frame.size.width, self.view.frame.size.height-220);
chartView.contentHeight =self.view.frame.size.height-220;
[self.view addSubview:chartView];
3.Configure the properties of chart model:AAChartModel
AAChartModel *chartModel= AAObject(AAChartModel)
.chartTypeSet(AAChartTypeColumn)
.titleSet(@"THE HEAT OF PROGRAMMING LANGUAGE")
.subtitleSet(@"Virtual Data")
.categoriesSet(@[@"Java",@"Swift",@"Python",@"Ruby", @"PHP",@"Go",@"C",@"C#",@"C++"])
.yAxisTitleSet(@"Degrees Celsius")
.seriesSet(@[
AAObject(AASeriesElement)
.nameSet(@"2017")
.dataSet(@[@45,@56,@34,@43,@65,@56,@47,@28,@49]),
AAObject(AASeriesElement)
.nameSet(@"2018")
.dataSet(@[@11,@12,@13,@14,@15,@16,@17,@18,@19]),
AAObject(AASeriesElement)
.nameSet(@"2019")
.dataSet(@[@31,@22,@33,@54,@35,@36,@27,@38,@39]),
AAObject(AASeriesElement)
.nameSet(@"2020")
.dataSet(@[@21,@22,@53,@24,@65,@26,@37,@28,@49]),
])
;
4.Draw the chart
[chartView aa_drawChartWithChartModel:chartModel];
5.Refresh the chart
[chartView aa_refreshChartWithChartModel:chartModel];
6.Special instructions
Pie chart and bubble chart are special in AAChartKit,if you want to draw these charts,you should do some different things for AAChartModel,for example
- To draw a pie chart,you should configure the properties of
AAChartModel
like this:
AAChartModel *chartModel= AAObject(AAChartModel)
.chartTypeSet(AAChartTypePie)
.titleSet(@"THE HEAT OF PROGRAMMING LANGUAGE")
.subtitleSet(@"Virtual Data")
.yAxisTitleSet(@"Degrees Celsius")
.seriesSet(
@[AAObject(AASeriesElement)
.nameSet(@"Percent")
.dataSet(@[
@[@"Java" , @67],
@[@"Swift" , @44],
@[@"Python", @83],
@[@"OC" , @11],
@[@"Ruby" , @42],
@[@"PHP" , @31],
@[@"Go" , @63],
@[@"C" , @24],
@[@"C#" , @888],
@[@"C++" , @66],
]),
]
)
;
- To draw a bubble chart,you should configure the properties of
AAChartModel
like this:
AAChartModel *chartModel= AAObject(AAChartModel)
.chartTypeSet(AAChartTypeBubble)
.titleSet(@"THE HEAT OF PROGRAMMING LANGUAGE")
.subtitleSet(@"Virtual Data")
.yAxisTitleSet(@"Degrees Celsius")
.seriesSet(
@[
AAObject(AASeriesElement)
.nameSet(@"2017")
.dataSet(
@[
@[@97, @36, @79],
@[@94, @74, @60],
@[@68, @76, @58],
@[@64, @87, @56],
@[@68, @27, @73],
@[@74, @99, @42],
@[@7, @93, @87],
@[@51, @69, @40],
@[@38, @23, @33],
@[@57, @86, @31]
]),
AAObject(AASeriesElement)
.nameSet(@"2018")
.dataSet(
@[
@[@25, @10, @87],
@[@2, @75, @59],
@[@11, @54, @8],
@[@86, @55, @93],
@[@5, @3, @58],
@[@90, @63, @44],
@[@91, @33, @17],
@[@97, @3, @56],
@[@15, @67, @48],
@[@54, @25, @81]
]),
AAObject(AASeriesElement)
.nameSet(@"2019")
.dataSet(
@[
@[@47, @47, @21],
@[@20, @12, @4],
@[@6, @76, @91],
@[@38, @30, @60],
@[@57, @98, @64],
@[@61, @17, @80],
@[@83, @60, @13],
@[@67, @78, @75],
@[@64, @12, @10],
@[@30, @77, @82]
]),
]
)
;
- Supported chart type for now
typedef NSString *AAChartType;
static AAChartType const AAChartTypeColumn = @"column"; //column chart
static AAChartType const AAChartTypeBar = @"bar"; //bar chart
static AAChartType const AAChartTypeArea = @"area"; //area chart
static AAChartType const AAChartTypeAreaspline = @"areaspline"; //areaspline chart
static AAChartType const AAChartTypeLine = @"line"; //line chart
static AAChartType const AAChartTypeSpline = @"spline"; //spline chart
static AAChartType const AAChartTypeScatter = @"scatter"; //scatter chart
static AAChartType const AAChartTypePie = @"pie"; //pie chart
static AAChartType const AAChartTypeBubble = @"bubble"; //bubble chart
static AAChartType const AAChartTypePyramid = @"pyramid"; //pyramid chart
static AAChartType const AAChartTypeFunnel = @"funnel"; //funnel chart
static AAChartType const AAChartTypeColumnrange = @"columnrange"; //columnrange chart
- Supported animation type for now
typedef NS_ENUM(NSInteger,AAChartAnimationType){
AAChartAnimationTypeLinear =0,
AAChartAnimationTypeSwing,
AAChartAnimationTypeEaseInQuad,
AAChartAnimationTypeEaseOutQuad,
AAChartAnimationTypeEaseInOutQuad,
AAChartAnimationTypeEaseInCubic,
AAChartAnimationTypeEaseOutCubic,
AAChartAnimationTypeEaseInOutCubic,
AAChartAnimationTypeEaseInQuart,
AAChartAnimationTypeEaseOutQuart,
AAChartAnimationTypeEaseInOutQuart,
AAChartAnimationTypeEaseInQuint,
AAChartAnimationTypeEaseOutQuint,
AAChartAnimationTypeEaseInOutQuint,
AAChartAnimationTypeEaseInExpo,
AAChartAnimationTypeEaseOutExpo,
AAChartAnimationTypeEaseInOutExpo,
AAChartAnimationTypeEaseInSine,
AAChartAnimationTypeEaseOutSine,
AAChartAnimationTypeEaseInOutSine,
AAChartAnimationTypeEaseInCirc,
AAChartAnimationTypeEaseOutCirc,
AAChartAnimationTypeEaseInOutCirc,
AAChartAnimationTypeEaseInElastic,
AAChartAnimationTypeEaseOutElastic,
AAChartAnimationTypeEaseInOutElastic,
AAChartAnimationTypeEaseInBack,
AAChartAnimationTypeEaseOutBack,
AAChartAnimationTypeEaseInOutBack,
AAChartAnimationTypeEaseInBounce,
AAChartAnimationTypeEaseOutBounce,
AAChartAnimationTypeEaseInOutBounce,
};
- line chart
- column chart
- bar chart
- special area chart one
- radar chart
- polar chart
- pie chart
- the oval style column chart
- bubble chart
AAPropStatementAndFuncStatement(copy, AAChartModel, NSString *, title);
AAPropStatementAndFuncStatement(copy, AAChartModel, NSString *, subtitle);
AAPropStatementAndFuncStatement(copy, AAChartModel, NSString *, chartType);
AAPropStatementAndFuncStatement(copy, AAChartModel, NSString *, stacking);
AAPropStatementAndFuncStatement(copy, AAChartModel, NSString *, symbol);
AAPropStatementAndFuncStatement(copy, AAChartModel, NSString *, zoomType);
AAPropStatementAndFuncStatement(assign, AAChartModel, BOOL, inverted);
AAPropStatementAndFuncStatement(assign, AAChartModel, BOOL, xAxisReversed);
AAPropStatementAndFuncStatement(assign, AAChartModel, BOOL, yAxisReversed);
AAPropStatementAndFuncStatement(assign, AAChartModel, BOOL, crosshairs);
AAPropStatementAndFuncStatement(assign, AAChartModel, BOOL, gradientColorEnable);
AAPropStatementAndFuncStatement(assign, AAChartModel, BOOL, polar);
AAPropStatementAndFuncStatement(assign, AAChartModel, BOOL, dataLabelEnabled);
AAPropStatementAndFuncStatement(assign, AAChartModel, BOOL, xAxisLabelsEnabled);
AAPropStatementAndFuncStatement(strong, AAChartModel, NSArray *, categories);
AAPropStatementAndFuncStatement(strong, AAChartModel, NSNumber *, xAxisGridLineWidth);
AAPropStatementAndFuncStatement(assign, AAChartModel, BOOL, yAxisLabelsEnabled);
AAPropStatementAndFuncStatement(copy, AAChartModel, NSString *, yAxisTitle);
AAPropStatementAndFuncStatement(strong, AAChartModel, NSNumber *, yAxisGridLineWidth);
AAPropStatementAndFuncStatement(strong, AAChartModel, NSArray *, colorsTheme);
AAPropStatementAndFuncStatement(strong, AAChartModel, NSArray *, series);
AAPropStatementAndFuncStatement(assign, AAChartModel, BOOL, legendEnabled);
AAPropStatementAndFuncStatement(copy, AAChartModel , NSString *, legendLayout);
AAPropStatementAndFuncStatement(copy, AAChartModel , NSString *, legendAlign);
AAPropStatementAndFuncStatement(copy, AAChartModel , NSString *, legendVerticalAlign);
AAPropStatementAndFuncStatement(copy, AAChartModel, NSString *, backgroundColor);
AAPropStatementAndFuncStatement(assign, AAChartModel, BOOL, options3dEnable);
AAPropStatementAndFuncStatement(strong, AAChartModel, NSNumber *, options3dAlpha);
AAPropStatementAndFuncStatement(strong, AAChartModel, NSNumber *, options3dBeta);
AAPropStatementAndFuncStatement(strong, AAChartModel, NSNumber *, options3dDepth);
AAPropStatementAndFuncStatement(strong, AAChartModel, NSNumber *, borderRadius);
AAPropStatementAndFuncStatement(strong, AAChartModel, NSNumber *, markerRadius);
An An
_oo0oo_
o8888888o
88" . "88
(| -_- |)
0\ = /0
___/`---'\___
.' \\| |// '.
/ \\||| : |||// \
/ _||||| -:- |||||- \
| | \\\ - /// | |
| \_| ''\---/'' |_/ |
\ .-\__ '-' ___/-. /
___'. .' /--.--\ `. .'___
."" '< `.___\_<|>_/___.' >' "".
| | : `- \`.;`\ _ /`;.`/ - ` : | |
\ \ `_. \_ __\ /__ _/ .-` / /
=====`-.____`.___ \_____/___.-`___.-'=====
`=---='
*******************************************************
¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥¥
€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€€
$$$$$$$$$$$$$$$$$$$$$$$
BUDDHA_BLESS_YOU
AWAY_FROM
BUG
AAChartKit is Copyright (c) 2017 An An and released as open source under the attached MIT LICENSE.
If you want to shrink the size of the AAChartKit
lib ,you should do something like this:
- Delete the
.js
file ofAAJSFiles
folder inAAChartKit
,The names of multiple files that need to be deleted are as follows
- AAJQueryLibrary.js
- AAHighchartsLibrary.js
- AAHighchartsMore.js
- AAHighcharts-3d.js
- AAFunnel.js
2.Change the content of AAChartView.html
file
<script src="AAJQueryLibrary.js">
</script>
<script src="AAHighchartsLibrary.js">
</script>
<script src="AAHighchartsMore.js">
</script>
<script src="AAHighcharts-3d.js">
</script>
<script src="AAFunnel.js">
</script>
to be
<script src="https://img.hcharts.cn/jquery/jquery-1.8.3.min.js">
</script>
<script src="https://img.hcharts.cn/highcharts/highcharts.js">
</script>
<script src="https://img.hcharts.cn/highcharts/highcharts-more.js">
</script>
- 20170610
- 添加数据处理通知
static NSString *const AAChartNotificationStatusLoading = @"AAChartStatusLoading";
static NSString *const AAChartNotificationStatusLoadedSuccess = @"AAChartStatusLoadedSuccess";
static NSString *const AAChartNotificationStatusLoadedFailed = @"AAChartStatusLoadedFailed";
- 添加封装集成视图UIChartView
// 使用示例:
// 导入头文件
#import "UIChartView.h"
// 实例化
UIChartView *chartView = [[UIChartView alloc] initWithFrame:CGRectMake(0.0, height, self.view.frame.size.width, (self.view.frame.size.height - height)) view:self.view];
chartView.chartModel.chartTypeSet(AAChartTypeBar); // 类型
chartView.chartTitle = @"编程语言热度";
chartView.chartSubTitle = @"虚拟数据";
chartView.chartXTitles = @[@"Java", @"Swift", @"Python", @"Objective-C", @"PHP", @"Go"];
chartView.chartYTitle = @"摄氏度";
NSMutableArray *array = [NSMutableArray array];
for (int i = 0; i < 4; i++)
{
ChartModel *model = [ChartModel new];
if (0 == i)
{
model.name = @"2014";
model.datas = @[@45, @88, @49, @43, @65, @56];
}
else if (1 == i)
{
model.name = @"2015";
model.datas = @[@31, @22, @33, @54, @35, @36];
}
else if (2 == i)
{
model.name = @"2016";
model.datas = @[@11, @12, @13, @14, @15, @16];
}
else if (3 == i)
{
model.name = @"2017";
model.datas = @[@21, @22, @24, @27, @25, @26];
}
[array addObject:model];
}
chartView.charts = array;
chartView.showActivityIndicatorView = YES;
[chartView reloadChart];