美文网首页
iOS一款简单的图表库-FSChartView

iOS一款简单的图表库-FSChartView

作者: 147a074a64d1 | 来源:发表于2018-02-07 10:16 被阅读22次

Introduction

FSChartView一款简单的图表库,内含柱状图(垂直&水平)、折线图、饼状图。

柱状图是使用UICollectionView实现,因为UICollectionView自带缓存池,所以选择UICollectionView,里面的很多delegate方法和dataSource方法,看起来很熟悉。折线图和饼状图主要使用CAShapeLayer和UIBezierPath实现。(柱状图写的是最low的,折线图写的是最bad的)

www.gaopintech.com    www.gaopintech.cn

Overview

垂直柱状图.gif

水平柱状图.gif

折线图.gif

饼状图.gif

支持StoryBoard.gif

Using CocoaPods

1

2

target 'projectName'douse_frameworks!

pod 'FSChartView', '~> 1.0.0'end

Tip

如果不能search到,请更新cocoapods库 , pod setup 如果还搜索不到,删除~/Library/Caches/CocoaPods目录下的search_index.json文件 再search

List

目录.png

Usage

三种图表的用法都必须遵守dataSource代理,实现对应必须要实现的dataSource方法。用法基本上都很统一,初始化之后设置dataSource和delgate,然后实现该实现的方法就可以。支持StoryBoard。

柱状图

垂直柱状图.png

水平柱状图.png

1

2

3

4

5

6

7

8

9

10

11

12

13

垂直柱状图

   FSBarChartView *chartView = [[FSBarChartView alloc] initWithFrame:CGRectMake(0, 100, self.view.frame.size.width, 200)];    self.chartView = chartView;

   [self.chartView registerClass:[FSBarChartViewCell class] forCellWithReuseIdentifier:@"CELL"];

   chartView.delegate = self;

   chartView.dataSource = self;

   [self.view addSubview:chartView];    self.chartView.abscissaAxis.backgroundColor = [UIColor greenColor];

水平柱状图

   FSBarChartView *chartView = [[FSBarChartView alloc] initWithFrame:CGRectMake(0, 100, self.view.frame.size.width, 200) orientation:FSBarChartViewOrientationHorizontal];    self.chartView = chartView;

   [self.chartView registerClass:[FSBarChartViewCell class] forCellWithReuseIdentifier:@"CELL"];

   chartView.delegate = self;

   chartView.dataSource = self;

   [self.view addSubview:chartView];

Note:

水平柱状图在实现- (__kindof FSBarChartViewCell *)barChartView:(FSBarChartView *)chartView cellForItemAtIndexPath:(NSIndexPath *)indexPath方法的时候注意配置cell的portrait属性为NO

垂直柱状图和水平柱状图的数据轴是相反的,垂直柱状图数据轴是横轴,水平柱状图是纵轴,在实现数据源方法的时候注意区分。

柱状图两个section之间的间距可以通过代理方法barChartView:spaceForSection:进行设置。

折线图

折线图.png

1

2

3

4

  FSLineChartView *lineViewChart = [[FSLineChartView alloc] initWithFrame:CGRectMake(0, 100, self.view.frame.size.width, 200)];   self.lineChartView  = lineViewChart;

  lineViewChart.delegate = self;

  lineViewChart.dataSource = self;

  [self.view addSubview:lineViewChart];

Note:

折线图的每一个点代表一个section,所以数据源方法和代理方法中的section大家不要误解;折线点的计算是通过数据源方法ineChartView:percentageDataAtIndexPath:返回的百分比计算的,所以这个百分比需要自己计算。

折线图默认的是一条折线,折线的数量可以通过数据源方法numberOfLineForChartView:设置。折线的颜色默认是[UIColor colorWithRed:77.0 / 255.0 green:196.0 / 255.0 blue:122.0 / 255.0 alpha:1.0f];颜色可以通过代理方法lineChartView:lineColorAtLineIndex:进行设置。

折线的折点默认是没有样式,如果需要设置可以根据代理方法lineChartView:lineJoinStyleAtIndexPath:进行设置,折点的颜色可以通过lineChartView:lineJoinColorAtIndexPath:方法设置。

饼状图

饼状图.png

1

2

3

4

 FSPieChartView *pieChartView = [[FSPieChartView alloc] initWithFrame:CGRectMake(0, self.navigationController.navigationBar.frame.size.height + [UIApplication sharedApplication].statusBarFrame.size.height + 20, self.view.frame.size.width, height)];

 pieChartView.delegate = self;

 pieChartView.dataSource = self;

 [self.view addSubview:pieChartView];  self.chartView = pieChartView;

Note:

饼状图需要分成多少份需要通过数据源方法numberOfSectionForChartView:返回;每一份的百分比也是需要自己计算,然后可以通过数据源方法pieChartView: percentageDataForSection:返回

饼状图的内圆大小和颜色也可以通过代理方法进行设置。默认的内圆大小是宽高中比较小的1/6,默认颜色是和背景色一致的。

饼状图的起始角度默认是-M_PI_2,可以通过代理方法设置起始角度。

默认的饼状图不能多选,可以设置属性allowMultiSelected允许多选,选中再点击就是取消选择,或者点击内圆进行取消选择。

总结

相关文章

网友评论

      本文标题:iOS一款简单的图表库-FSChartView

      本文链接:https://www.haomeiwen.com/subject/nkdozxtx.html