MPAndroidChart饼图属性及相关设置

公司最近在做统计功能,所以用到了饼图,在网上查了一些资料最终决定使用MPAndroidChart,使用起来非常方便,还有一些问题通过各种查找,终于解决...废话不多说,先看下效果图:

布局文件:

[java] view plain copy

  1. <com.github.mikephil.charting.charts.PieChart
  2. android:id="@+id/chart"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent" />

java代码:

1、初始化饼图

[java] view plain copy

  1. private void initChart(){
  2. mChart = (PieChart) findViewById(R.id.chart);
  3. mChart.setUsePercentValues(true);
  4. mChart.setDescription("");
  5. mChart.setExtraOffsets(5, 10, 5, 5);
  6. //        mChart.setDrawSliceText(false);//设置隐藏饼图上文字,只显示百分比
  7. mChart.setDrawHoleEnabled(true);
  8. mChart.setHoleColorTransparent(true);
  9. mChart.setTransparentCircleColor(getResources().getColor(R.color.buttombar_bg));
  10. mChart.setTransparentCircleAlpha(110);
  11. mChart.setOnChartValueSelectedListener(this);
  12. mChart.setHoleRadius(45f); //半径
  13. //mChart.setHoleRadius(0)  //实心圆
  14. mChart.setTransparentCircleRadius(48f);// 半透明圈
  15. mChart.setDrawCenterText(true);//饼状图中间可以添加文字
  16. // 如果没有数据的时候,会显示这个,类似ListView的EmptyView
  17. mChart.setNoDataText(getResources().getString(R.string.no_data));
  18. mChart.setUsePercentValues(true);//设置显示成比例
  19. SimpleDateFormat format = new SimpleDateFormat("yyyy");
  20. String year = format.format(since_at*1000);
  21. mChart.setCenterText(generateCenterSpannableText(year));
  22. mChart.setRotationAngle(0); // 初始旋转角度
  23. // enable rotation of the chart by touch
  24. mChart.setRotationEnabled(true); // 可以手动旋转
  25. mChart.setHighlightPerTapEnabled(true);
  26. mChart.animateY(1000, Easing.EasingOption.EaseInOutQuad); //设置动画
  27. Legend mLegend = mChart.getLegend();  //设置比例图
  28. mLegend.setPosition(Legend.LegendPosition.BELOW_CHART_LEFT);  //左下边显示
  29. mLegend.setFormSize(12f);//比例块字体大小
  30. mLegend.setXEntrySpace(2f);//设置距离饼图的距离,防止与饼图重合
  31. mLegend.setYEntrySpace(2f);
  32. //设置比例块换行...
  33. mLegend.setWordWrapEnabled(true);
  34. mLegend.setDirection(Legend.LegendDirection.LEFT_TO_RIGHT);
  35. mLegend.setTextColor(getResources().getColor(R.color.alpha_80));
  36. mLegend.setForm(Legend.LegendForm.SQUARE);//设置比例块形状,默认为方块
  37. //        mLegend.setEnabled(false);//设置禁用比例块
  38. }

2、设置饼图数据

[java] view plain copy

  1. /**
  2. * 设置饼图的数据
  3. * @param names 饼图上显示的比例名称
  4. * @param counts 百分比
  5. */
  6. private void setData(ArrayList<String> names,ArrayList<Entry> counts) {
  7. PieDataSet dataSet = new PieDataSet(counts, "");
  8. dataSet.setSliceSpace(2f);
  9. dataSet.setSelectionShift(5f);
  10. ArrayList<Integer> colors = new ArrayList<Integer>();
  11. for (int c : ColorTemplate.JOYFUL_COLORS)
  12. colors.add(c);
  13. //
  14. for (int c : ColorTemplate.COLORFUL_COLORS)
  15. colors.add(c);
  16. for (int c : ColorTemplate.LIBERTY_COLORS)
  17. colors.add(c);
  18. //        for (int c : ColorTemplate.PASTEL_COLORS)
  19. //            colors.add(c);
  20. colors.add(ColorTemplate.getHoloBlue());
  21. //        colors.add(getResources().getColor(R.color.stastic_team));
  22. dataSet.setColors(colors);
  23. //dataSet.setSelectionShift(0f);
  24. PieData data = new PieData(names, dataSet);
  25. data.setValueFormatter(new PercentFormatter());
  26. data.setValueTextSize(12f);
  27. data.setValueTextColor(getResources().getColor(R.color.whrite));
  28. mChart.setData(data);
  29. // undo all highlights
  30. mChart.highlightValues(null);
  31. mChart.invalidate();
  32. }

在这个过程中遇到几个问题:

1、底部的比例块显示只有一行,如果数据较多的话,会超出屏幕外边,所以需要换行显示比例块,设置如下:

[java] view plain copy

  1. //设置比例块换行...
  2. mLegend.setWordWrapEnabled(true);

[java] view plain copy

  1. 同时需要把比例块放到下边或者放到上边  <span style="font-family: Arial, Helvetica, sans-serif;"> mLegend.setPosition(Legend.LegendPosition.BELOW_CHART_LEFT);  //左下边显示</span>

2、饼图上怎么只显示百分比,查了好多资料没有看有人提到这个,最后在stackoverflow上找到答案。

http://stackoverflow.com/questions/31154706/mpandroidchart-piechart-remove-percents

pieChart.setDrawSliceText(false)

3、如果比例块放在左边或者右边,如果字体太长,会和饼图叠加在一起,做以下处理可以防止叠加。

[java] view plain copy

  1. mLegend.setXEntrySpace(2f);//设置距离饼图的距离,防止与饼图重合
  2. mLegend.setYEntrySpace(2f);
时间: 2024-11-06 05:16:51

MPAndroidChart饼图属性及相关设置的相关文章

ggplot2 scale相关设置

 ggplot2   scale相关设置 标度设置:主要用于在ggplot画图后的各个图层进行调整设置. 1.相关属性scale设置 包括scale_size().scale_alpha().scale_shape() 由上面的名称可以看出,这三个设置主要对ggplot的图层属性进行相关设置,包括尺寸.透明度和形状. 以下列出该设置的主要参数: scale_xxx(name = waiver(), breaks = waiver(), labels = waiver(), limits = NU

仿制新浪微博iOS客户端之二-项目基础搭建及相关设置

上一次的文章主要提到了仿制新浪微博所用到的一些技术和知识点,那本文就开始进入正式的项目实施阶段了.首先要做的自然是项目的创建和相关的设置,以及基础框架的搭建了. 一.项目创建及相关设置 1.项目创建 现在越来越多的的公司开始使用Swift开发iOS和AppleWatch的项目,因此此次我们的开发也使用Swift语言来进行,新建项目,设置如下: 既然是仿制,自然可以当成是一个练习,项目名称:“WeiboTest”,编程语言选择“Swift”.然后“下一步”直到创建完成. 2.应用图标设置 将应用图

java连接SQL数据库(JDBC)相关设置

2016-06-14 一.SQL server中的相关设置(以sql server 2012 版本为例) 建立一个SQL server 身份认证的服务器登录名 首先启动SQL客户端,以windows身份认证方式登录到服务器,依次点击 安全性-->右击登录名-->新建登录名-->输入登录名-->选择SQL Server 身份验证-->输入密码-->先不要确定    在当前对话框左边选择 服务器角色 -->勾选sysadmin(相当于管理员权限)     重启数据库

Linux网络属性配置相关命令

Linux网络属性配置相关命令: 前言: Linux属性配置可以分为两类.一类通过命令配置,另一类通过修改配置文件配置. Linux属性配置的相关命令可以分为三大类: 一.ifcfg命令家族:①ifconfig,②route,③netstat,④hostname ①ifconfig命令:主要负责接口及地址查看和管理 ifconfig [INTERFACE] #ifconfig -a:显示所有接口,包括inactive状态的接口.(包括激活和未激活的接口): 如图所示,-a选项将会显示所有接口,包

QuickReport的相关设置

一.QuickReport的设置: 1.将QuickReport的PageSize属性设为Custom; 2.设定纸张的长度.宽度及边距等信息; 3.将QuickReport的PageSize的属性改为Default. 二.页面相关设置qrRepareSmallCard.Page.Length       := 180;qrRepareSmallCard.Page.BottomMargin := 4;qrRepareSmallCard.Page.Columns      := 1;qrRepar

Android studio相关设置及实现存在于工程目录中的视频播放

一:相关设置 1:主题设置 File-->Settings-->Appearance &Behavior-->Appearance-->THeme 2:Java源码的颜色.字体设置 字体:File-->Settings-->Editor-->Colors&Fonts-->Font  注意:修改之前先Save as保存原来的,然后才可以改成你想要的字体. 源码颜色:File-->Settings-->Editor-->Colo

Intent及其七大属性及intent-filter设置

Intent及其七大属性 一.任务与回退栈: (一).任务Task: ①. 概念: 一个任务(task)就是在执行某项工作时与用户进行交互的Activity的集合.这些Ac tivity按照被打开的顺序依次被安排在一个堆栈中(回退栈). ②. 主屏页面: 设备的主屏是大多数任务的启动位置,当用户触摸一个应用程序启动器图标(或者a pp快捷图标),应用程序的任务就会在前台显示.如果相关应用程序的任务不存在\ ,那么就会有一个新的任务被创建,并且应用程序打开的"主"Activity会作为任

Android studio界面相关设置

Android studio界面相关设置 原文出自 http://www.cnblogs.com/justinzhang/p/4274839.html 用惯了emacs的操作方式,每当使用一款新的编辑器的时候,第一个想到的就是这个工具有没有emacs的快捷键,Android studio也是一样的. 1. Android studio设置emacs的方式如下,点击File->Settings 选择其中的keymap,在keymap中选择emacs,这样就成功的设置好了emacs的操作模式: 2.

C#.Net 导出Excel 之单元格 相关设置

range.NumberFormatLocal = "@";     //设置单元格格式为文本range = (Range)worksheet.get_Range("A1", "E1");     //获取Excel多个单元格区域:本例做为Excel表头range.Merge(0);     //单元格合并动作worksheet.Cells[1, 1] = "Excel单元格赋值";     //Excel单元格赋值range