GGCharts 一个可以高度自定义的iOS图表框架

网友投稿 1239 2022-10-30

GGCharts 一个可以高度自定义的iOS图表框架

GGCharts 一个可以高度自定义的iOS图表框架

GGChart

目录 (Table of Contents)

GGChart图表示例折线图与柱状图折线图柱状图支持特性折线图柱状图数据结构折线与柱状图DataSetBaseLineBarSetBarDataSet:BaseLineBarSetLineDataSet:BaseLineBarSet 折线与柱状图Data:BaseLineBarDataLineData:BaseLineBarDataBarData:BaseLineBarData 背景与轴:LineBarGirdYAxisXAxis 饼图饼图支持特性:饼图数据结构:饼图属性列表:PieDataSetPieDataNumberDataInnerLable:NumberDataOutSideLable:InnerLableCenterLableData:NumberDataCenterData 雷达图雷达图支持特性:雷达图数据结构:雷达图属性列表:RadarDataSetRadarIndicatorDataRadarData 进度条图进度条图支持特性:进度条图数据结构:进度条图属性列表:ProgressDataProgressLable:NumberData 股票图表示例

图表示例

折线图与柱状图

折线图柱状图支持特性

支持数据拉伸、并列、居中对齐、堆叠、正负堆叠(同级数据叠加)、指定数据环绕。支持折线区域填充颜色以及渐变色。支持自定义折线或者柱状图文字字体、颜色、偏移量。支持更新时支持渐变动画。支持自定义网格线宽、颜色、虚线样式。支持自定义X轴Y轴字体、颜色、文字偏移量,Y轴标题文字。支持柱状图或折线图指定轴数据(默认左边Y轴)支持自动计算Y轴极大值极小值、可设置极大极小值偏移比率。支持自定义Y轴极大值极小值。

折线图柱状图数据结构

折线与柱状图DataSet

BaseLineBarSet

/** * 折线与柱状图内边距 */@property (nonatomic, assign) UIEdgeInsets insets;/** * 折线与柱状图背景层设置 */@property (nonatomic, strong) LineBarGird * gridConfig;/** * 折线与柱状表现形式 */@property (nonatomic, assign) LineBarDataMode lineBarMode;/** * 数据中极大极小值偏移比率, 默认0.1 */@property (nonatomic, assign) CGFloat idRatio;/** * 更新时是否需要动画 */@property (nonatomic, assign) BOOL updateNeedAnimation;/** * 柱状图折线图数据文字颜色 * 优先级高于 data.stringColor * * @param value 数据 * * @return 柱状图颜色 */@property (nonatomic, copy) UIColor *(^stringColorForValue)(CGFloat value);

注意:BaseLineBarSet 中属性insets 为数据背景网格边框的内边距。

BarDataSet:BaseLineBarSet

/** * 柱状图颜色 * 优先级高于 BarData.fillColor * * @param indexPath 柱状位置 * @param number 柱状图数据 * * @return 柱状图颜色 */@property (nonatomic, copy) UIColor *(^barColorsAtIndexPath)(NSIndexPath *indexPath, NSNumber * number);/** * 柱状图数据数组 */@property (nonatomic, strong) NSArray *barAry;/** * 中间分割线线宽 */@property (nonatomic, assign) CGFloat midLineWidth;/** * 中间线颜色 */@property (nonatomic, strong) UIColor * midLineColor;

LineDataSet:BaseLineBarSet

/** * 折线图数据数组 */@property (nonatomic, strong) NSArray * lineAry;

折线与柱状图Data

BaseLineBarData

/** * 柱状图, 折线定标器 */@property (nonatomic, strong, readonly) DLineScaler * lineBarScaler;/** * 用来显示的数据 */@property (nonatomic, strong) NSArray *dataAry;/** * 柱状, 折线定标轴, 默认左轴 */@property (nonatomic, assign) ScalerAxisMode scalerMode;/** * 围绕该Y轴坐标点填充, FLT_MIN 代表不填充 */@property (nonatomic, strong) NSNumber * roundNumber;/** * 环绕Y轴像素点 */@property (nonatomic, assign, readonly) CGFloat bottomYPix;#pragma mark - 折线文字/** * 柱状, 折线文字字体 */@property (nonatomic, strong) UIFont * stringFont;/** * 柱状, 折线文字颜色 */@property (nonatomic, strong) UIColor * stringColor;/** * 柱状, 折线格式化字符串 */@property (nonatomic, strong) NSString * dataFormatter;/** * 折线文字偏移比例 * * {0, 0} 中心, {-1, -1} 右上, {0, 0} 左下 * * {-1, -1}, { 0, -1}, { 1, -1}, * {-1, 0}, { 0, 0}, { 1, 0}, * {-1, 1}, { 0, 1}, { 1, 1}, */@property (nonatomic, assign) CGPoint offSetRatio;/** * 柱状, 折线文字偏移 */@property (nonatomic, assign) CGSize stringOffset;

注意:BaseLineBarData 中属性offSetRatio 如果没有特别比例要求,可以参考 GGGraphicsConstants 已经写好的偏移比率

/** * 文字偏移比例 */CG_EXTERN CGPoint const GGRatioTopLeft;CG_EXTERN CGPoint const GGRatioTopCenter;CG_EXTERN CGPoint const GGRatioTopRight;CG_EXTERN CGPoint const GGRatioBottomLeft;CG_EXTERN CGPoint const GGRatioBottomCenter;CG_EXTERN CGPoint const GGRatioBottomRight;CG_EXTERN CGPoint const GGRatioCenterLeft;CG_EXTERN CGPoint const GGRatioCenter;CG_EXTERN CGPoint const GGRatioCenterRight;

LineData:BaseLineBarData

#pragma mark - 折线配置/** * 折线线宽 */@property (nonatomic, assign) CGFloat lineWidth;/** * 折线颜色 */@property (nonatomic, strong) UIColor * lineColor;/** * 折线虚线样式 */@property (nonatomic, strong) NSArray *dashPattern;/** * 显示关键点设置 */@property (nonatomic, strong) NSSet * showShapeIndexSet;#pragma mark - 折线关键点配置/** * 折线关键点半径 */@property (nonatomic, assign) CGFloat shapeRadius;/** * 折线关键点填充色 */@property (nonatomic, strong) UIColor * shapeFillColor;/** * 折线线宽 */@property (nonatomic, assign) CGFloat shapeLineWidth;#pragma mark - 折线填充/** * 折线填充色, 优先级比渐变色高 */@property (nonatomic, strong) UIColor * lineFillColor;/** * 折线填充渐变色, 数据内传入CGColor */@property (nonatomic, strong) NSArray * gradientFillColors;/** * 填充色变化曲线, 由上至下 */@property (nonatomic, strong) NSArray *locations;

BarData:BaseLineBarData

/** * 柱状图边框颜色 */@property (nonatomic, strong) UIColor * barBorderColor;/** * 柱状图填充色 */@property (nonatomic, strong) UIColor * barFillColor;/** * 柱状图边框 */@property (nonatomic, assign) CGFloat borderWidth;/** * 柱状图宽度 */@property (nonatomic, assign) CGFloat barWidth;

背景与轴:

LineBarGird

/** * 轴线结构体 */@property (nonatomic, assign) GGLine axisLine;/** * 轴纵向显示文字 */@property (nonatomic, strong) NSArray *lables;/** * 轴线分割线长度 */@property (nonatomic, assign) CGFloat over;/** * 文字与轴之间的间距 */@property (nonatomic, assign) CGFloat stringGap;/** * 文字偏移比例 * * {0, 0} 中心, {-1, -1} 右上, {0, 0} 左下 * * {-1, -1}, { 0, -1}, { 1, -1}, * {-1, 0}, { 0, 0}, { 1, 0}, * {-1, 1}, { 0, 1}, { 1, 1}, */@property (nonatomic, assign) CGPoint offSetRatio;/** * 是否绘制在分割线中心点 */@property (nonatomic, assign) BOOL drawStringAxisCenter;/** * 隐藏文字间隔 */@property (nonatomic, strong) NSArray * hiddenPattern;/** * 显示文字标签集合, 设置改选项 hiddenPattern 失效 */@property (nonatomic, strong) NSSet * showIndexSet;/** * 是否显示轴网格线 */@property (nonatomic, assign) BOOL showSplitLine;/** * 是否显示查价标 */@property (nonatomic, assign) BOOL showQueryLable;

YAxis

/** * 轴最大值 */@property (nonatomic, strong) NSNumber * max;/** * 轴最小值 */@property (nonatomic, strong) NSNumber * min;/** * 轴线结构体 */@property (nonatomic, assign) GGLine axisLine;/** * 轴格式化字符串 */@property (nonatomic, strong) NSString * dataFormatter;/** * Y轴分割个数 */@property (nonatomic, assign) NSUInteger splitCount;/** * 轴线分割线长度 */@property (nonatomic, assign) CGFloat over;/** * 文字与轴之间的间距 */@property (nonatomic, assign) CGFloat stringGap;/** * 文字偏移比例 * * {0, 0} 中心, {-1, -1} 右上, {0, 0} 左下 * * {-1, -1}, { 0, -1}, { 1, -1}, * {-1, 0}, { 0, 0}, { 1, 0}, * {-1, 1}, { 0, 1}, { 1, 1}, */@property (nonatomic, assign) CGPoint offSetRatio;/** * 是否显示轴网格线 */@property (nonatomic, assign) BOOL showSplitLine;/** * 是否显示查价标 */@property (nonatomic, assign) BOOL showQueryLable;/** * 轴标题 */@property (nonatomic, strong) AxisName * name;

XAxis

/** * 轴纵向显示文字 */@property (nonatomic, strong) NSArray *lables;/** * 轴线分割线长度 */@property (nonatomic, assign) CGFloat over;/** * 文字与轴之间的间距 */@property (nonatomic, assign) CGFloat stringGap;/** * 文字偏移比例 * * {0, 0} 中心, {-1, -1} 右上, {0, 0} 左下 * * {-1, -1}, { 0, -1}, { 1, -1}, * {-1, 0}, { 0, 0}, { 1, 0}, * {-1, 1}, { 0, 1}, { 1, 1}, */@property (nonatomic, assign) CGPoint offSetRatio;/** * 是否绘制在分割线中心点 */@property (nonatomic, assign) BOOL drawStringAxisCenter;/** * 隐藏文字间隔 */@property (nonatomic, strong) NSArray * hiddenPattern;/** * 显示文字标签集合, 设置改选项 hiddenPattern 失效 */@property (nonatomic, strong) NSSet * showIndexSet;/** * 是否显示轴网格线 */@property (nonatomic, assign) BOOL showSplitLine;

饼图

饼图支持特性:

饼图数据结构:

饼图属性列表:

PieDataSet

/** * 扇形图数组 */@property (nonatomic, strong) NSArray * pieAry;/** * 是否显示中心标签 */@property (nonatomic, assign) BOOL showCenterLable;/** * 中心点 */@property (nonatomic, strong) CenterData * centerLable;/** * 扇形图边框宽度 */@property (nonatomic, assign) CGFloat pieBorderWidth;/** * 环形间距 */@property (nonatomic, assign) CGFloat borderRadius;/** * 扇形图边框颜色 */@property (nonatomic, strong) UIColor * pieBorderColor;/** * 更新时是否需要动画 */@property (nonatomic, assign) BOOL updateNeedAnimation;

PieData

/** * 折线图定标器 */@property (nonatomic, strong, readonly) DPieScaler * pieScaler;/** * 扇形图开始角度默认12点钟方向 */@property (nonatomic, assign) CGFloat pieStartTransform;/** * 扇形图 */@property (nonatomic, strong) NSArray *dataAry;/** * 扇形图半径区间默认{.0f, 100.0f} */@property (nonatomic, assign) GGRadiusRange radiusRange;/** * 扇形图类型 */@property (nonatomic, assign) RoseType roseType;/** * 扇形图颜色 */@property (nonatomic, copy) UIColor * (^pieColorsForIndex)(NSInteger index, CGFloat ratio);/** * 渐变色权重 */@property (nonatomic, strong) NSArray *gradientLocations;/** * 颜色渐变曲线 */@property (nonatomic, assign) GradientCurve gradientCurve;/** * 渐变色, 优先级高于UIColor * (^pieColorsForIndex)(NSInteger index, CGFloat ratio) */@property (nonatomic, copy) NSArray * (^gradientColorsForIndex)(NSInteger index);#pragma mark - Inner/** * 是否显示扇形图文字 */@property (nonatomic, assign) BOOL showInnerString;/** * 扇形图内边文字 */@property (nonatomic, strong) InnerLable * innerLable;#pragma mark - OutSide/** * 显示样式 */@property (nonatomic, assign) OutSideLableType showOutLableType;/** * 扇形图外边文字 */@property (nonatomic, strong) OutSideLable * outSideLable;

注意:PieData 中属性radiusRange 为结构体 struct GGRadiusRange { CGFloat inRadius; CGFloat outRadius; },要求 outRadius需要包含inRadius。详见类GGPie 。

NumberData

/** * 外部文字字体颜色 */@property (nonatomic, strong) UIColor * lableColor;/** * 外部文字字体 */@property (nonatomic, strong) UIFont * lableFont;/** * 扇形图内边文字格式化字符串 */@property (nonatomic, strong) NSString * stringFormat;/** * 文字偏移比例 * * {0, 0} 中心, {-1, -1} 右上, {0, 0} 左下 * * {-1, -1}, { 0, -1}, { 1, -1}, * {-1, 0}, { 0, 0}, { 1, 0}, * {-1, 1}, { 0, 1}, { 1, 1}, */@property (nonatomic, assign) CGPoint stringRatio;/** * 文字偏移 */@property (nonatomic, assign) CGSize stringOffSet;/** * 富文本字符串 */@property (nonatomic, copy) NSAttributedString *(^attrbuteStringValueBlock)(CGFloat value);

InnerLable:NumberData

/** * 扇形图富文本字符串 */@property (nonatomic, copy) NSAttributedString * (^attributeStringBlock)(NSInteger index, CGFloat value, CGFloat ratio);

OutSideLable:InnerLable

/** * 线宽度 */@property (nonatomic, assign) CGFloat lineWidth;/** * 折线与扇形图的间距 */@property (nonatomic, assign) CGFloat lineSpacing;/** * 线长度 */@property (nonatomic, assign) CGFloat lineLength;/** * 拐弯线长度 */@property (nonatomic, assign) CGFloat inflectionLength;/** * 拐点线终点圆形半径 */@property (nonatomic, assign) CGFloat linePointRadius;/** * 折线颜色 */@property (nonatomic, copy) UIColor * (^lineColorsBlock)(NSInteger index, CGFloat ratio);

CenterLableData:NumberData

/** * 中间数字 */@property (nonatomic, assign) CGFloat number;

CenterData

/** * 填充颜色 */@property (nonatomic, strong) UIColor * fillColor;/** * 结构体 */@property (nonatomic, assign) CGFloat radius;/** * 中间文字配置 */@property (nonatomic, strong) CenterLableData * lable;

雷达图

雷达图支持特性:

支持自定义雷达图背景,圆环或者多边形。支持自定义文字(字体,颜色,偏移量)。支持自定义背景线(颜色,现款)。支持雷达内容渐变色。

雷达图数据结构:

雷达图属性列表:

注意:雷达图需要先制定各个维度最大值以及标题,详见RadarIndicatorData。

RadarDataSet

/** * 图层数据 */@property (nonatomic, strong) NSArray * radarSet;/** * 基础摄制 */@property (nonatomic, strong) NSArray * indicatorSet;/** * 背景雷达线颜色 */@property (nonatomic, strong) UIColor * strockColor;/** * 分割数 */@property (nonatomic, assign) NSUInteger splitCount;/** * 标题字体 */@property (nonatomic, strong) UIFont * titleFont;/** * 线宽 */@property (nonatomic, assign) CGFloat lineWidth;/** * 雷达图半径 */@property (nonatomic, assign) CGFloat radius;/** * 文字与顶点间距 */@property (nonatomic, assign) CGFloat titleSpacing;/** * 最外层雷达线宽度 */@property (nonatomic, assign) CGFloat borderWidth;/** * 是否背景为圆形 */@property (nonatomic, assign) BOOL isCirlre;/** * 文字颜色 */@property (nonatomic, strong) UIColor * stringColor;

RadarIndicatorData

/** * 标题 */@property (nonatomic, strong) NSString * title;/** * 最大值 */@property (nonatomic, assign) CGFloat max;

RadarData

/** * 线宽 */@property (nonatomic, assign) CGFloat lineWidth;/** * 填充颜色 */@property (nonatomic, strong) UIColor *fillColor;/** * 线颜色 */@property (nonatomic, strong) UIColor *strockColor;/** * 基础长度比例, 当数据为0时最低雷达图显示位置 */@property (nonatomic, assign) CGFloat baseRatio;/** * 数据源 */@property (nonatomic, strong) NSArray *datas;#pragma mark - 折线关键点配置/** * 折线关键点半径 */@property (nonatomic, assign) CGFloat shapeRadius;/** * 折线关键点填充色 */@property (nonatomic, strong) UIColor * shapeFillColor;/** * 折线线宽 */@property (nonatomic, assign) CGFloat shapeLineWidth;#pragma mark - Gradient/** * 渐变色 */@property (nonatomic, strong) NSArray * gradientColors;

进度条图

进度条图支持特性:

支持自定义启示角度支持自定义文字(字体、颜色)。支持更新动画。支持渐变色。

进度条图数据结构:

进度条图属性列表:

ProgressData

/** * 最大值 */@property (nonatomic, assign) CGFloat maxValue;/** * 当前值 */@property (nonatomic, assign) CGFloat value;#pragma mark - 进度条范围/** * 开始角度 * * 3点方向为0度(水平为0度) */@property (nonatomic, assign) CGFloat startAngle;/** * 结束角度 */@property (nonatomic, assign) CGFloat endAngle;#pragma mark - 进度条设置/** * 进度条背景颜色 */@property (nonatomic, strong) UIColor * progressBackColor;/** * 进度条渐变色 */@property (nonatomic, strong) NSArray * progressGradientColor;/** * 渐变色权重 */@property (nonatomic, strong) NSArray *gradientLocations;/** * 渐变色曲线 */@property (nonatomic, assign) GradientCurve gradientCurve;/** * 进度条半径 */@property (nonatomic, assign) CGFloat progressRadius;/** * 小圆点弧度 */@property (nonatomic, assign) CGFloat pointRadius;/** * 小圆颜色 */@property (nonatomic, strong) UIColor * pointColor;/** * 线宽 */@property (nonatomic, assign) CGFloat lineWidth;#pragma mark - 中心文字设置/** * 中心文字外观设置 */@property (nonatomic, strong) ProgressLable * centerLable;

ProgressLable:NumberData

--

股票图表示例

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Cookie字符串转Map集合方法
下一篇:Siesta - 可组合的框架用于在Go中编写HTTP handlers
相关文章

 发表评论

暂时没有评论,来抢沙发吧~