摘要:可選的值有,和。布局類型或即水平布局和垂直布局默認是設定圖例在圖表區中的水平對齊方式,合法值有,和。垂直位置可以通過選項做進一步設定。
https://github.com/AAChartMod...
前言適配 iOS 6, 支持ARC,支持 OC語言,配置簡單.
功能強大,支持柱狀圖 條形圖 折線圖 填充圖 雷達圖 扇形圖 氣泡圖等多種圖形
動畫效果細膩精致,流暢優美.
支持類 Masonry 鏈式編程語法
AAChartView +AAChartModel = Chart,在 AAChartKit 封裝庫當中,遵循這樣一個極簡主義公式:圖表視圖控件+圖表模型=你想要的圖表.
Column Chart 柱狀圖 | Columnrange Chart 條形范圍圖 | Area Chart 區域填充圖 |
---|---|---|
Line Chart 多組數據折線圖 | Step Area Chart 直方折線填充圖 | Step Line Chart 直方折線圖 |
---|---|---|
將項目demo中的文件夾AAChartKitLib拖入到所需項目中.
在你的項目的 .pch 全局宏定義文件中添加
#import "AAGlobalMacro.h"正式開始
在你的視圖控制器文件中添加
#import "AAChartView.h"
創建視圖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;//設置圖表視圖的內容高度(默認 contentHeight 和 AAChartView 的高度相同) [self.view addSubview:chartView];
配置視圖模型AAChartModel
AAChartModel *chartModel= AAObject(AAChartModel) .chartTypeSet(AAChartTypeColumn)//設置圖表的類型(這里以設置的為柱狀圖為例) .titleSet(@"編程語言熱度")//設置圖表標題 .subtitleSet(@"虛擬數據")//設置圖表副標題 .categoriesSet(@[@"Java",@"Swift",@"Python",@"Ruby", @"PHP",@"Go",@"C",@"C#",@"C++"])//設置圖表橫軸的內容 .yAxisTitleSet(@"攝氏度")//設置圖表 y 軸的單位 .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]), ]) ;
繪制圖形
[chartView aa_drawChartWithChartModel:chartModel];//圖表視圖對象調用圖表模型對象,繪制最終圖形
刷新圖形
[chartView aa_refreshChartWithChartModel:chartModel];//更新 AAChartModel 數據之后,刷新圖表
特別說明
AAChartKit 中扇形圖、氣泡圖都歸屬為特殊類型,所以想要繪制扇形圖、氣泡圖,圖表模型 AAChartModel 設置稍有不同,示例如下
繪制扇形圖,你需要這樣配置模型 AAChartModel
AAChartModel *chartModel= AAObject(AAChartModel) .chartTypeSet(AAChartTypePie) .titleSet(@"編程語言熱度") .subtitleSet(@"虛擬數據") .dataLabelEnabledSet(true)//是否直接顯示扇形圖數據 .yAxisTitleSet(@"攝氏度") .seriesSet( @[AAObject(AASeriesElement) .nameSet(@"語言熱度占比") .dataSet(@[ @[@"Java" , @67], @[@"Swift" , @44], @[@"Python", @83], @[@"OC" , @11], @[@"Ruby" , @42], @[@"PHP" , @31], @[@"Go" , @63], @[@"C" , @24], @[@"C#" , @888], @[@"C++" , @66], ]), ] ) ;
繪制氣泡圖,你需要這樣配置模型 AAChartModel
AAChartModel *chartModel= AAObject(AAChartModel) .chartTypeSet(AAChartTypeBubble) .titleSet(@"編程語言熱度") .subtitleSet(@"虛擬數據") .yAxisTitleSet(@"攝氏度") .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] ]), ] ) ;
當前已支持的圖表類型有十種以上,說明如下
typedef NSString *AAChartType; static AAChartType const AAChartTypeColumn = @"column"; //柱形圖 static AAChartType const AAChartTypeBar = @"bar"; //條形圖 static AAChartType const AAChartTypeArea = @"area"; //折線區域填充圖 static AAChartType const AAChartTypeAreaspline = @"areaspline"; //曲線區域填充圖 static AAChartType const AAChartTypeLine = @"line"; //折線圖 static AAChartType const AAChartTypeSpline = @"spline"; //曲線圖 static AAChartType const AAChartTypeScatter = @"scatter"; //散點圖 static AAChartType const AAChartTypePie = @"pie"; //扇形圖 static AAChartType const AAChartTypeBubble = @"bubble"; //氣泡圖 static AAChartType const AAChartTypePyramid = @"pyramid"; //金字塔圖 static AAChartType const AAChartTypeFunnel = @"funnel"; //漏斗圖 static AAChartType const AAChartTypeColumnrange = @"columnrange";//柱形范圍圖
當前已支持的圖表渲染動畫類型有三十種以上,說明如下
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, };AAChartModel一些重要屬性經過配置之后的圖形示例如下 - line chart - 折線圖 - column chart - 柱形圖 - bar chart - 條形圖 - special area chart one - 區域填充圖一 - special area chart two - 區域填充圖二 - special area chart three - 區域填充圖三 - area spline range chart - 區域曲線范圍填充圖 - radar chart - 雷達圖 - polar chart - 極地圖 - pie chart - 扇形圖 - the oval style column chart - 頭部為橢圓形的柱形圖 - bubble chart - 氣泡圖 - mixed chart - 混合圖形 AAChartModel 屬性配置列表
AAPropStatementAndFuncStatement(copy, AAChartModel, NSString *, title);//標題內容 AAPropStatementAndFuncStatement(copy, AAChartModel, NSString *, subtitle);//副標題內容 AAPropStatementAndFuncStatement(copy, AAChartModel, AAChartSubtitleAlignType, subtitleAlign);//圖表副標題文本水平對齊方式。可選的值有 “left”,”center“和“right”。 默認是:center. AAPropStatementAndFuncStatement(copy, AAChartModel, AAChartType, chartType);//圖表類型 AAPropStatementAndFuncStatement(copy, AAChartModel, AAChartStackingType, stacking);//堆積樣式 AAPropStatementAndFuncStatement(copy, AAChartModel, AAChartSymbolType, symbol);//折線曲線連接點的類型:"circle", "square", "diamond", "triangle","triangle-down",默認是"circle" AAPropStatementAndFuncStatement(copy, AAChartModel, AAChartZoomType, zoomType);//縮放類型 AAChartZoomTypeX表示可沿著 x 軸進行手勢縮放 AAPropStatementAndFuncStatement(assign, AAChartModel, BOOL, pointHollow);//折線曲線的連接點是否為空心的 AAPropStatementAndFuncStatement(assign, AAChartModel, BOOL, inverted);//x 軸是否垂直 AAPropStatementAndFuncStatement(assign, AAChartModel, BOOL, xAxisReversed);// x 軸翻轉 AAPropStatementAndFuncStatement(assign, AAChartModel, BOOL, yAxisReversed);//y 軸翻轉 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);//x軸是否顯示數據 AAPropStatementAndFuncStatement(strong, AAChartModel, NSArray *, categories);//圖表橫坐標每個點對應的名稱 AAPropStatementAndFuncStatement(strong, AAChartModel, NSNumber *, xAxisGridLineWidth);//x軸網格線的寬度 AAPropStatementAndFuncStatement(assign, AAChartModel, BOOL, yAxisLabelsEnabled);//y軸是否顯示數據 AAPropStatementAndFuncStatement(copy, AAChartModel, NSString *, yAxisTitle);//y軸標題 AAPropStatementAndFuncStatement(strong, AAChartModel, NSNumber *, yAxisGridLineWidth);//y軸網格線的寬度 AAPropStatementAndFuncStatement(strong, AAChartModel, NSArray *, colorsTheme);//圖表主題顏色數組 AAPropStatementAndFuncStatement(strong, AAChartModel, NSArray *, series); AAPropStatementAndFuncStatement(assign, AAChartModel, BOOL, legendEnabled);//是否顯示圖例 AAPropStatementAndFuncStatement(copy, AAChartModel ,AAChartLegendLayoutType, legendLayout);//圖例數據項的布局。布局類型: "horizontal" 或 "vertical" 即水平布局和垂直布局 默認是:horizontal. AAPropStatementAndFuncStatement(copy, AAChartModel ,AAChartLegendAlignType, legendAlign);//設定圖例在圖表區中的水平對齊方式,合法值有left,center 和 right。 AAPropStatementAndFuncStatement(copy, AAChartModel ,AAChartLegendVerticalAlignType, legendVerticalAlign);//設定圖例在圖表區中的垂直對齊方式,合法值有 top,middle 和 bottom。垂直位置可以通過 y 選項做進一步設定。 AAPropStatementAndFuncStatement(copy, AAChartModel, NSString *, backgroundColor);//圖表背景色 AAPropStatementAndFuncStatement(assign, AAChartModel, BOOL, options3dEnable);//是否3D化圖形(僅對條形圖,柱狀圖有效) AAPropStatementAndFuncStatement(strong, AAChartModel, NSNumber *, options3dAlpha); AAPropStatementAndFuncStatement(strong, AAChartModel, NSNumber *, options3dBeta); AAPropStatementAndFuncStatement(strong, AAChartModel, NSNumber *, options3dDepth);//3D圖形深度 AAPropStatementAndFuncStatement(strong, AAChartModel, NSNumber *, borderRadius);//柱狀圖長條圖頭部圓角半徑(可用于設置頭部的形狀,僅對條形圖,柱狀圖有效) AAPropStatementAndFuncStatement(strong, AAChartModel, NSNumber *, markerRadius);//折線連接點的半徑長度更多圖形效果 支持監聽用戶點擊事件及單指滑動事件
可通過給 AAChartView 示例對象設置代理方法,來實現監聽用戶的點擊事件和單指滑動事件
//設置 AAChartView 事件代理 self.aaChartView.delegate = self; //實現對 AAChartView 事件代理的監聽 #pragma mark -- AAChartView delegate - (void)AAChartView:(AAChartView *)chartView moveOverEventWithMessage:(AAMoveOverEventMessageModel *)message { NSLog(@"
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/50647.html
摘要:可選的值有,和。布局類型或即水平布局和垂直布局默認是設定圖例在圖表區中的水平對齊方式,合法值有,和。垂直位置可以通過選項做進一步設定。 showImg(https://segmentfault.com/img/remote/1460000012009745?w=1240&h=653); showImg(https://segmentfault.com/img/remote/146000...
摘要:也是一款優秀的響應式框架站點所使用的一套框架為微信服務量身設計的一套框架一組很小的,響應式的組件,你可以在網頁的項目上到處使用一個可定制的文件,使瀏覽器呈現的所有元素,更一致和符合現代標準。 GitHub 值得收藏的前端項目 整理與收集的一些比較優秀github項目,方便自己閱讀,順便分享出來,大家一起學習,本篇文章會持續更新,版權歸原作者所有。歡迎github star與fork 預...
閱讀 1786·2021-10-12 10:12
閱讀 2542·2021-09-29 09:42
閱讀 2718·2021-09-03 10:28
閱讀 2255·2019-08-30 15:54
閱讀 1162·2019-08-30 15:53
閱讀 1394·2019-08-30 11:26
閱讀 3362·2019-08-30 11:02
閱讀 2142·2019-08-30 11:02