关于charts的系列视图介绍传送门:

iOS 图表工具charts介绍

iOS 图表工具charts之LineChartView

iOS 图表工具charts之BarChartView

iOS 图表工具charts之PieChartView

iOS 图表工具charts之CandleStickChartView

iOS 图表工具charts之CombinedChartView

BarChartView在charts中可以用来绘制柱状图,由于charts是基于swift开发的,如果需要和objective-C混编(通过pod的方式不用管),可以参考我的上几篇文章《iOS OC中桥接swift第三方库》,这里主要讲的是LineChartView的一些常用属性和一些基本用法,实际情况以开发为准

chartView的更加细节的属性设置 请查看我的上篇文章《iOS 图表工具charts之LineChartView》,因为BarChartView大部分基础属性都差不多,这里就不详细写注释了

BarChartView的基础设置

  1. -(void)setupUI{
  2. //BarChartView默认纵向展示柱状图, 如果需要横向展示 则创建HorizontalBarChartView即可
  3. BarChartView *chartView = [[BarChartView alloc] init];
  4. //设置偏移
  5. [chartView setExtraOffsetsWithLeft:10 top:10 right:10 bottom:10];
  6. //开启border
  7. chartView.drawBordersEnabled = YES;
  8. chartView.borderLineWidth = .5f;
  9. chartView.borderColor = UIColor.blackColor;
  10. //设置背景
  11. chartView.drawGridBackgroundEnabled = NO;
  12. chartView.gridBackgroundColor = [UIColor grayColor];
  13. //无内容显示
  14. chartView.noDataText = @"";
  15. //关闭描述
  16. chartView.chartDescription.enabled = NO;
  17. chartView.chartDescription.text = @"tiny`s barChart demo";
  18. //关闭图例
  19. chartView.legend.enabled = NO;
  20. //缩放
  21. chartView.scaleXEnabled = NO;
  22. chartView.scaleYEnabled = NO;
  23. chartView.autoScaleMinMaxEnabled = YES;
  24. chartView.highlightPerTapEnabled = NO;
  25. chartView.highlightPerDragEnabled = NO;
  26. chartView.pinchZoomEnabled = NO; //手势捏合
  27. chartView.dragEnabled = YES;
  28. chartView.dragDecelerationFrictionCoef = 0.5; //0 1 惯性
  29. //代理
  30. chartView.delegate = self;
  31. //leftAxis
  32. ChartYAxis *leftAxis = chartView.leftAxis;
  33. leftAxis.enabled = YES;
  34. leftAxis.labelPosition = YAxisLabelPositionOutsideChart;
  35. leftAxis.drawGridLinesEnabled = YES;
  36. leftAxis.gridLineDashLengths = @[@2,@4];
  37. leftAxis.labelTextColor = UIColor.blackColor;
  38. leftAxis.labelFont = [UIFont systemFontOfSize:10];
  39. leftAxis.decimals = 2;
  40. //设置样式
  41. LeftAxisFormatter *leftFormatter = [LeftAxisFormatter new];
  42. leftAxis.valueFormatter = leftFormatter;
  43. //rightAxis
  44. ChartYAxis *rightAxis = chartView.rightAxis;
  45. rightAxis.enabled = NO;
  46. //xAxis
  47. ChartXAxis *xAxis = chartView.xAxis;
  48. xAxis.enabled = YES;
  49. xAxis.labelPosition = XAxisLabelPositionBottom;
  50. //不画线
  51. xAxis.drawGridLinesEnabled = NO;
  52. BarxAxisFormatter *xFormatter = [BarxAxisFormatter new];
  53. xAxis.valueFormatter = xFormatter;
  54. xFormatter.titles = @[@"语文",@"数学",@"外语",@"物理"];
  55. self.charView = chartView;
  56. [self addSubview:self.charView];
  57. [self.charView mas_makeConstraints:^(MASConstraintMaker *make) {
  58. make.edges.mas_offset(0);
  59. }];
  60. //draw
  61. [self drawData];
  62. //执行动画
  63. [self.charView animateWithYAxisDuration:1.f];
  64. }
  65. -(void)drawData{
  66. NSArray *datas = @[@100,@90,@76,@55,@45,@77,@98,@62];
  67. NSMutableArray *array = [NSMutableArray array];
  68. for (int i = 0; i < datas.count; i++) {
  69. BarChartDataEntry *entry = [[BarChartDataEntry alloc] initWithX:i y:[datas[i] integerValue]];
  70. [array addObject:entry];
  71. }
  72. //set
  73. BarChartDataSet *set = [[BarChartDataSet alloc] initWithEntries:array label:@"Bar DataSet"];
  74. [set setColors:@[UIColor.redColor,UIColor.blueColor,UIColor.blueColor,UIColor.blackColor,UIColor.cyanColor,UIColor.grayColor,UIColor.greenColor,UIColor.cyanColor]];
  75. //显示柱图值并格式化
  76. NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init];
  77. numberFormatter.positiveSuffix = @"分";
  78. ChartDefaultValueFormatter *formatter = [[ChartDefaultValueFormatter alloc] initWithFormatter:numberFormatter];
  79. [set setValueFormatter:formatter];
  80. set.highlightEnabled = NO;
  81. BarChartData *data = [[BarChartData alloc] initWithDataSet:set];
  82. self.charView.data = data;
  83. }
  84. #pragma mark - ChartViewDelegate
  85. #pragma mark 图表中数值被选中
  86. -(void)chartValueSelected:(ChartViewBase *)chartView entry:(ChartDataEntry *)entry highlight:(ChartHighlight *)highlight{
  87. // NSLog(@"图表中数值被选中");
  88. }
  89. #pragma mark 图表中的空白区域被选中
  90. -(void)chartValueNothingSelected:(ChartViewBase *)chartView{
  91. // NSLog(@"空白区域被选中");
  92. }
  93. #pragma mark 图表被缩放
  94. -(void)chartScaled:(ChartViewBase *)chartView scaleX:(CGFloat)scaleX scaleY:(CGFloat)scaleY{
  95. // NSLog(@"图表被缩放");
  96. }
  97. #pragma mark 图表被移动
  98. -(void)chartTranslated:(ChartViewBase *)chartView dX:(CGFloat)dX dY:(CGFloat)dY{
  99. // NSLog(@"图表被移动");
  100. }

一些需要注意的点:

1.如果需要给每个bar显示的数字格式化比如 100分, 100t,100g等等添加前缀或者后缀,则可以设置BarChartDataSet属性

  1. NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init];
  2. numberFormatter.positiveSuffix = @"分";
  3. ChartDefaultValueFormatter *formatter = [[ChartDefaultValueFormatter alloc] initWithFormatter:numberFormatter];
  4. [set setValueFormatter:formatter];

2.柱状图动画效果

  1. //执行动画
  2. [self.charView animateWithYAxisDuration:1.f];

3.颜色可以没每个柱子设置颜色

  1. [set setColors:@[UIColor.redColor,UIColor.blueColor,UIColor.blueColor,UIColor.blackColor,UIColor.cyanColor,UIColor.grayColor,UIColor.greenColor,UIColor.cyanColor]];

4.每个点的数值要显示出来

  1. set.drawValuesEnabled = YES;

5.柱状图横向显示,只需要将BarChartView换成HorizontalBarChartView即可,其他不变 效果图如下:

6.BarChartData可以添加多个柱子

  1. BarChartData *data = [[BarChartData alloc] init]
  2. [data addDataSet:set]

转载请标注来源:https://www.cnblogs.com/qqcc1388/

iOS 图表工具charts之BarChartView的更多相关文章

  1. iOS 图表工具charts之CombinedChartView

    关于charts的系列视图介绍传送门: iOS 图表工具charts介绍 iOS 图表工具charts之LineChartView iOS 图表工具charts之BarChartView iOS 图表 ...

  2. iOS 图表工具charts之CandleStickChartView(K线)

    关于charts的系列视图介绍传送门: iOS 图表工具charts介绍 iOS 图表工具charts之LineChartView iOS 图表工具charts之BarChartView iOS 图表 ...

  3. iOS 图表工具charts之PieChartView

    关于charts的系列视图介绍传送门: iOS 图表工具charts介绍 iOS 图表工具charts之LineChartView iOS 图表工具charts之BarChartView iOS 图表 ...

  4. iOS 图表工具charts之LineChartView

    关于charts的系列视图介绍传送门: iOS 图表工具charts介绍 iOS 图表工具charts之LineChartView iOS 图表工具charts之BarChartView iOS 图表 ...

  5. iOS 图表工具charts介绍

    charts是一个很好的绘图工具,功能非常强大,可以用来绘制折线,柱状图,饼状图,k线图,k线分时图,雷达图,气泡图等等,charts是一款仿照安卓 MPAndroidChart而来的一个基于swif ...

  6. JHChart 1.1.0 iOS图表工具库中文ReadMe

    JHChart(最新版本1.1.0) 好吧,的确当前的github上已经存有不少的iOS图表工具库,然而,当公司的项目需要图表时,几乎没有哪个第三方能够完全满足我的项目需求.无奈之下,本人不得不花费一 ...

  7. JHChart iOS图表工具库1.0.3新版本详解

    前言. 从2016年4月14日开始,本人着手开发了JHChart图表工具库.经过断断续续的开发,截止到现在,已经实现了折线图.柱状图.饼状图.环形图和表格样式的图表功能.为了方便使用,我已经将一个简单 ...

  8. iOS图表库Charts集成与使用

    Charts是一个很优秀的图表库,它支持Android.iOS.tvOS和macOS,这样使用起来,可以节省学习成本,可以从GitHub上了解更多信息.本文记录在iOS项目上的集成与使用. Chart ...

  9. .net图表工具汇总

    概述:图形图表的可视化数据表现形式已成为一种趋势,本文推荐了10款非常好用的.NET图表控件,希望对广大.NET图表开发者能有所帮助. 读图时代,图形图表的可视化数据表现形式已成为一种趋势.因为图表能 ...

随机推荐

  1. CPP标准模板库 随笔

    对于无序容器而言,其次序是不固定的,就算添加一个元素,也可能全盘改变次序.唯一可以保证的是,内容相同的元素会相邻.(eg: 23,1,1,25,3,27,5,7,11,11) 迭代器的种类: 1,前向 ...

  2. linux 查看cpu核心数

    1.查看CPU个数 cat /proc/cpuinfo |grep "physical id"|sort|uniq|wc -l 2.查看每个物理CPU含有的核心个数 cat /pr ...

  3. init container

    init container与应用容器在本质上是一样的, 但它们是仅运行一次就结束的任务, 并且必须在成功执行完成后, 系统才能继续执行下一个容器, 可以用在例如应用容器启动前做一些初始化工作,当in ...

  4. hdu4405 概率dp

    飞行棋游戏 问从0结束游戏的投色子次数期望是多少 设dp[i]表示i到n的期望,那么可以得到dp[i]=(dp[i+1]+dp[i+2]+dp[i+3]+dp[i+4]+dp[i+5]+dp[i+6] ...

  5. spark源码本地调试

    1.前提条件: 1)安装jdk 版本: 2)安装scala 版本: 3)安装sbt 版本: 4)安装maven 5)安装git 版本: 6)安装idea,并配置好sbt.git.maven 2.从gi ...

  6. HihoCoder1087Hamiltonian Cycle(DP状态压缩)

    时间限制:10000ms 单点时限:1000ms 内存限制:256MB 描述 Given a directed graph containing n vertice (numbered from 1 ...

  7. Kendo UI for jQuery使用教程:小部件DOM元素结构

    [Kendo UI for jQuery最新试用版下载] Kendo UI目前最新提供Kendo UI for jQuery.Kendo UI for Angular.Kendo UI Support ...

  8. 清除eclipse 里面主函数的加载记录 launch configuration删除

    我们eclipse  里面执行的程序,应用 把他记录下来,生成配置文件. 当我们导出行的jar包的时候,需要制定运行的主函数. 会看到很多的历史主程序,带来方便的同时,也产生了影响. 需要清除写记录的 ...

  9. 直接选择排序(Straight Selection Sort)

    1.定义 选择排序(Selection Sort)的基本思想是:每一趟从待排序的记录中选出关键字最小的记录,顺序放在已排好序的子文件的最后,直到全部记录排序完毕. 常用的选择排序方法有直接选择排序和堆 ...

  10. 【杂题】[LibreOJ #6608] 无意识的石子堆【容斥原理】【FFT】

    Description Solution 943718401=225*2^22+1 显然每行必须有两个,我们不妨枚举有k列有2个石子,那么有2(n-k)列有1个石子. \[Ans=\sum\limit ...