微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

MPAndroidChart Android 图表库

程序名称:MPAndroidChart

授权协议: Apache

操作系统: Android

开发语言: Java

MPAndroidChart 介绍

MPAndroidChart 是 Android 系统上一款开源的图表库。目前提供线图和饼图,支持选择、缩放和拖放。

示例代码

LineData ld = new LineData(...);

LimitLine ll = new LimitLine(140f);
ll.setLineColor(Color.RED);
ll.setlinewidth(4f);
// .. and more styling options

ld.addLimitLine(ll);

图表类型:

  • LineChart (with legend, simple design)

  • LineChart (with legend, simple design)

  • LineChart (single DataSet)

  • BarChart2D (with legend, simple design)

  • BarChart2D (single DataSet)

  • BarChart2D (multiple DataSets)

  • BarChart3D

  • PieChart (with selection, …)

  • ScatterChart (with squares, triangles, circles, … and more)

MPAndroidChart 官网

https://github.com/PhilJay/MPAndroidChart

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐