11.General Settings & Styling(MPAndroidChart中文翻译)

目录

第8节.Setting Colors(MPAndroidChart中文翻译)
第9节.Formatting Data Values (ValueFormatter)(MPAndroidChart中文翻译)
第10节-Formatting Axis Values (AxisValueFormatter)(MPAndroidChart中文翻译)
第11节.General Settings & Styling(MPAndroidChart中文翻译)
第12节.Specific Settings & Styling(MPAndroidChart中文翻译)
第13节.Legend(MPAndroidChart中文翻译)
第14节.Dynamic & Realtime Data(MPAndroidChart中文翻译)
第15节. Modifying the Viewport(MPAndroidChart中文翻译)
第16节.Animations(MPAndroidChart中文翻译)
第17节. MarkerView (Popup View)(MPAndroidChart中文翻译)
第18节. The ChartData class(MPAndroidChart中文翻译)
第19节. ChartData subclasses(MPAndroidChart中文翻译)
第20节. The DataSet class (general DataSet styling)(MPAndroidChart中文翻译)
第21节. DataSet subclasses (specific DataSet styling)(MPAndroidChart中文翻译)
第22节. The ViewPortHandler(MPAndroidChart中文翻译)
第23节. Customizing the Fill-Line-Position (FillFormatter)(MPAndroidChart中文翻译)
第24节. Proguard(MPAndroidChart中文翻译)
第25节. Realm.io mobile database(MPAndroidChart中文翻译)
第26节. Creating your own (custom) DataSets(MPAndroidChart中文翻译)
第27节. Miscellaneous (more useful stuff)(MPAndroidChart中文翻译)

本节主要介绍本依赖库对于所有类型Chart的设置和样式.

Refreshing

  • invalidate():chart调用这个方法将会刷新图表.这是为了是图表变化生效而必须的.
  • notifyDataSetChanged():让图表知道底层数据发生改变,并执行所有必要的计算(偏移量,图例,最大值,最小值,…).尤其是动态添加数据后需要调用.

Logging

  • setLogEnabled(boolean enabled): 设置为true将会启用图表日志输出.启用该功能对性能不利,如非必要,请保持禁用.

General Chart Styling

这里是一些常用的设置样式的方法,可以直接用在chart上:

  • setBackgroundColor(int color): 设置背景颜色,将会覆盖整个图表视图.另外,背景颜色也可以在xml布局文件中定义.
  • setDescription(String desc): 在图表的右下角显示说明文字.
  • setDescriptionColor(int color): 设置说明文字的颜色.
  • setDescriptionPosition(float x, float y): 为说明文字设置自定义位置.
  • setDescriptionTypeface(Typeface t): 设置说明文字的字体.
  • setDescriptionTextSize(float size): 设置说明文字的大小,最小6f,最大16f.
  • setNoDataText(String text):设置图表为空时显示的文字.
  • setDrawGridBackground(boolean enabled): 如果启用,将绘制图表后面的背景矩形.
  • setGridBackgroundColor(int color): 设置图表背景矩形的颜色.
  • setDrawBorders(boolean enabled): 启用/禁用 绘制图表边框线(图表周围的线).
  • setBorderColor(int color): 设置边框线的颜色.
  • setBorderWidth(float width):设置边框线的粗细,单位dp.
  • setMaxVisibleValueCount(int count): 设置图表最多可见的标签数量,仅在启用setDrwaValues()方法后才生效.
    原文作者:xiaobug
    原文地址: https://www.jianshu.com/p/ef8b8f0089d5
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞