服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - IOS - iOS使用Charts框架绘制饼状图

iOS使用Charts框架绘制饼状图

2021-02-28 14:14jianshu_wl IOS

本文主要介绍了iOS使用Charts框架绘制饼状图的方法,具有一定的参考价值,下面跟着小编一起来看下吧

首先先看一下效果:

iOS使用Charts框架绘制饼状图

饼状图

一、创建饼状图对象

创建饼状图对象用到类是piechartview.h, 代码如下:

?
1
2
3
4
5
6
7
self.piechartview = [[piechartview alloc] init];
self.piechartview.backgroundcolor = bgcolor;
[self.view addsubview:self.piechartview];
[self.piechartview mas_makeconstraints:^(masconstraintmaker *make) {
 make.size.mas_equalto(cgsizemake(300, 300));
 make.center.mas_equalto(self.view);
}];

二、设置饼状图外观样式

1. 基本样式

?
1
2
3
4
[self.piechartview setextraoffsetswithleft:30 top:0 right:30 bottom:0];//饼状图距离边缘的间隙
self.piechartview.usepercentvaluesenabled = yes;//是否根据所提供的数据, 将显示数据转换为百分比格式
self.piechartview.dragdecelerationenabled = yes;//拖拽饼状图后是否有惯性效果
self.piechartview.drawslicetextenabled = yes;//是否显示区块文本

2. 设置饼状图中间的空心样式

空心有两个圆组成, 一个是hole, 一个是transparentcircle, transparentcircle里面是hole, 所以饼状图中间的空心也就是一个同心圆. 代码如下:

?
1
2
3
4
5
self.piechartview.drawholeenabled = yes;//饼状图是否是空心
self.piechartview.holeradiuspercent = 0.5;//空心半径占比
self.piechartview.holecolor = [uicolor clearcolor];//空心颜色
self.piechartview.transparentcircleradiuspercent = 0.52;//半透明空心半径占比
self.piechartview.transparentcirclecolor = [uicolor colorwithred:210/255.0 green:145/255.0 blue:165/255.0 alpha:0.3];//半透明空心的颜色

3. 设置饼状图中心的文本

当饼状图是空心样式时, 可以在饼状图中心添加文本, 添加文本有两种方法. 一种方法是使用centertext 属性添加, 这种方法不能设置字体颜色、大小等. 另一种方法是使用centerattributedtext属性添加, 这种方法添加的富文本, 因此就可以对字体进行进一步美化了. 代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
if (self.piechartview.isdrawholeenabled == yes) {
 self.piechartview.drawcentertextenabled = yes;//是否显示中间文字
 //普通文本
// self.piechartview.centertext = @"饼状图";//中间文字
 //富文本
 nsmutableattributedstring *centertext = [[nsmutableattributedstring alloc] initwithstring:@"饼状图"];
 [centertext setattributes:@{nsfontattributename: [uifont boldsystemfontofsize:16],
     nsforegroundcolorattributename: [uicolor orangecolor]}
    range:nsmakerange(0, centertext.length)];
 self.piechartview.centerattributedtext = centertext;
}

4. 设置饼状图描述

?
1
2
3
self.piechartview.descriptiontext = @"饼状图示例";
self.piechartview.descriptionfont = [uifont systemfontofsize:10];
self.piechartview.descriptiontextcolor = [uicolor graycolor];

6. 设置饼状图图例样式

?
1
2
3
4
5
6
7
self.piechartview.legend.maxsizepercent = 1;//图例在饼状图中的大小占比, 这会影响图例的宽高
self.piechartview.legend.formtotextspace = 5;//文本间隔
self.piechartview.legend.font = [uifont systemfontofsize:10];//字体大小
self.piechartview.legend.textcolor = [uicolor graycolor];//字体颜色
self.piechartview.legend.position = chartlegendpositionbelowchartcenter;//图例在饼状图中的位置
self.piechartview.legend.form = chartlegendformcircle;//图示样式: 方形、线条、圆形
self.piechartview.legend.formsize = 12;//图示大小

三、为饼状图提供数据

为饼状图提供数据, 首先需要创建两个数组yvals和xvals, yvals数组存放饼状图每个区块的数据, xvals存放的是每个区块的名称或者描述.

接着需要用piechartdataset.h类创建dataset对象, 创建时将yvals放进去.

然后需要用piechartdata.h类创建data对象, 创建时将xvals和dataset对象放进去.

最后直接把data对象赋值给饼状图的data属性即可. 创建data对象代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
- (piechartdata *)setdata{
 double mult = 100;
 int count = 5;//饼状图总共有几块组成
 //每个区块的数据
 nsmutablearray *yvals = [[nsmutablearray alloc] init];
 for (int i = 0; i < count; i++) {
 double randomval = arc4random_uniform(mult + 1);
 barchartdataentry *entry = [[barchartdataentry alloc] initwithvalue:randomval xindex:i];
 [yvals addobject:entry];
 }
 //每个区块的名称或描述
 nsmutablearray *xvals = [[nsmutablearray alloc] init];
 for (int i = 0; i < count; i++) {
 nsstring *title = [nsstring stringwithformat:@"part%d", i+1];
 [xvals addobject:title];
 }
 //dataset
 piechartdataset *dataset = [[piechartdataset alloc] initwithyvals:yvals label:@""];
 dataset.drawvaluesenabled = yes;//是否绘制显示数据
 nsmutablearray *colors = [[nsmutablearray alloc] init];
 [colors addobjectsfromarray:chartcolortemplates.vordiplom];
 [colors addobjectsfromarray:chartcolortemplates.joyful];
 [colors addobjectsfromarray:chartcolortemplates.colorful];
 [colors addobjectsfromarray:chartcolortemplates.liberty];
 [colors addobjectsfromarray:chartcolortemplates.pastel];
 [colors addobject:[uicolor colorwithred:51/255.f green:181/255.f blue:229/255.f alpha:1.f]];
 dataset.colors = colors;//区块颜色
 dataset.slicespace = 0;//相邻区块之间的间距
 dataset.selectionshift = 8;//选中区块时, 放大的半径
 dataset.xvalueposition = piechartvaluepositioninsideslice;//名称位置
 dataset.yvalueposition = piechartvaluepositionoutsideslice;//数据位置
 //数据与区块之间的用于指示的折线样式
 dataset.valuelinepart1offsetpercentage = 0.85;//折线中第一段起始位置相对于区块的偏移量, 数值越大, 折线距离区块越远
 dataset.valuelinepart1length = 0.5;//折线中第一段长度占比
 dataset.valuelinepart2length = 0.4;//折线中第二段长度最大占比
 dataset.valuelinewidth = 1;//折线的粗细
 dataset.valuelinecolor = [uicolor browncolor];//折线颜色
 //data
 piechartdata *data = [[piechartdata alloc] initwithxvals:xvals dataset:dataset];
 nsnumberformatter *formatter = [[nsnumberformatter alloc] init];
 formatter.numberstyle = nsnumberformatterpercentstyle;
 formatter.maximumfractiondigits = 0;//小数位数
 formatter.multiplier = @1.f;
 [data setvalueformatter:formatter];//设置显示数据格式
 [data setvaluetextcolor:[uicolor browncolor]];
 [data setvaluefont:[uifont systemfontofsize:10]];
 return data;
}

运行结果如下:

iOS使用Charts框架绘制饼状图

运行结果

如果不需要空心样式的饼状图, 可以将饼状图的drawholeenabled赋值为no, 将中间的文本去掉即可, 代码如下:

self.piechartview.drawholeenabled = no;

效果如下:

iOS使用Charts框架绘制饼状图

实心饼状图

每个区块之间如果需要间距, 可以通过dataset对象的slicespace属性设置, 代码如下:

dataset.slicespace = 3;

效果如下:

iOS使用Charts框架绘制饼状图

有区块间距的饼状图

由于属性较多, 其它效果可以自行尝试.

demo 下载地址: piechartdemo-master.rar

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持服务器之家!

原文链接:http://www.jianshu.com/p/45194d861b21

延伸 · 阅读

精彩推荐
  • IOS解析iOS开发中的FirstResponder第一响应对象

    解析iOS开发中的FirstResponder第一响应对象

    这篇文章主要介绍了解析iOS开发中的FirstResponder第一响应对象,包括View的FirstResponder的释放问题,需要的朋友可以参考下...

    一片枫叶4662020-12-25
  • IOSiOS布局渲染之UIView方法的调用时机详解

    iOS布局渲染之UIView方法的调用时机详解

    在你刚开始开发 iOS 应用时,最难避免或者是调试的就是和布局相关的问题,下面这篇文章主要给大家介绍了关于iOS布局渲染之UIView方法调用时机的相关资料...

    windtersharp7642021-05-04
  • IOSIOS开发之字典转字符串的实例详解

    IOS开发之字典转字符串的实例详解

    这篇文章主要介绍了IOS开发之字典转字符串的实例详解的相关资料,希望通过本文能帮助到大家,让大家掌握这样的方法,需要的朋友可以参考下...

    苦练内功5832021-04-01
  • IOSiOS通过逆向理解Block的内存模型

    iOS通过逆向理解Block的内存模型

    自从对 iOS 的逆向初窥门径后,我也经常通过它来分析一些比较大的应用,参考一下这些应用中某些功能的实现。这个探索的过程乐趣多多,不仅能满足自...

    Swiftyper12832021-03-03
  • IOSiOS 雷达效果实例详解

    iOS 雷达效果实例详解

    这篇文章主要介绍了iOS 雷达效果实例详解的相关资料,需要的朋友可以参考下...

    SimpleWorld11022021-01-28
  • IOSIOS 屏幕适配方案实现缩放window的示例代码

    IOS 屏幕适配方案实现缩放window的示例代码

    这篇文章主要介绍了IOS 屏幕适配方案实现缩放window的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要...

    xiari5772021-06-01
  • IOS关于iOS自适应cell行高的那些事儿

    关于iOS自适应cell行高的那些事儿

    这篇文章主要给大家介绍了关于iOS自适应cell行高的那些事儿,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的...

    daisy6092021-05-17
  • IOSiOS中tableview 两级cell的展开与收回的示例代码

    iOS中tableview 两级cell的展开与收回的示例代码

    本篇文章主要介绍了iOS中tableview 两级cell的展开与收回的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    J_Kang3862021-04-22