Android图表库MPAndroidChart.zip
MPAndroidChart是Android系统上一款开源的图表库。目前提供线图和饼图,支持选择、缩放和拖放。示例代码:LineData ld = new LineData(...);LimitLine ll = new LimitLine(140f);ll.setLineColor(Color.RED);ll.setLineWidth(4f);// .. and more styling optionsld.addLimitLine(ll);图表类型:LineChart(withlegend,simpledesign)LineChart(withlegend,simpledesign)Li
用户评论