服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - Android MPAndroidChart开源库图表之折线图的实例代码

Android MPAndroidChart开源库图表之折线图的实例代码

2022-02-21 16:09shineflowers Android

这篇文章主要介绍了Android MPAndroidChart开源库图表之折线图的实例代码,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

本文讲述了Android MPAndroidChart开源库图表之折线图的实例代码。分享给大家供大家参考,具体如下:

承接上一篇文章,请参考Android HelloChart开源库图表之折线图的实例代码

1. 将mpandroidchartlibrary-2-0-8.jar包copy到项目的libs中;

2. 定义xml文件。

Android MPAndroidChart开源库图表之折线图的实例代码

3.  主要Java逻辑代码如下,注释已经都添加上了。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package com.example.mpandroidlinechart;
import java.util.ArrayList;
import com.github.mikephil.charting.charts.LineChart;
import com.github.mikephil.charting.components.Legend;
import com.github.mikephil.charting.components.Legend.LegendForm;
import com.github.mikephil.charting.data.Entry;
import com.github.mikephil.charting.data.LineData;
import com.github.mikephil.charting.data.LineDataSet;
import android.support.v7.app.ActionBarActivity;
import android.graphics.Color;
import android.os.Bundle;
public class MainActivity extends ActionBarActivity {
 private LineChart mLineChart;
// private Typeface mTf;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 mLineChart = (LineChart) findViewById(R.id.spread_line_chart);
// mTf = Typeface.createFromAsset(getAssets(), "OpenSans-Bold.ttf");
 LineData mLineData = getLineData(36, 100);
 showChart(mLineChart, mLineData, Color.rgb(114, 188, 223));
 }
 // 设置显示的样式
 private void showChart(LineChart lineChart, LineData lineData, int color) {
 lineChart.setDrawBorders(false); //是否在折线图上添加边框
 // no description text
 lineChart.setDescription("");// 数据描述
 // 如果没有数据的时候,会显示这个,类似listview的emtpyview
 lineChart.setNoDataTextDescription("You need to provide data for the chart.");
 // enable / disable grid background
 lineChart.setDrawGridBackground(false); // 是否显示表格颜色
 lineChart.setGridBackgroundColor(Color.WHITE & 0x70FFFFFF); // 表格的的颜色,在这里是是给颜色设置一个透明度
 // enable touch gestures
 lineChart.setTouchEnabled(true); // 设置是否可以触摸
 // enable scaling and dragging
 lineChart.setDragEnabled(true);// 是否可以拖拽
 lineChart.setScaleEnabled(true);// 是否可以缩放
 // if disabled, scaling can be done on x- and y-axis separately
 lineChart.setPinchZoom(false);//
 lineChart.setBackgroundColor(color);// 设置背景
 // add data
 lineChart.setData(lineData); // 设置数据
 // get the legend (only possible after setting data)
 Legend mLegend = lineChart.getLegend(); // 设置比例图标示,就是那个一组y的value的
 // modify the legend ...
 // mLegend.setPosition(LegendPosition.LEFT_OF_CHART);
 mLegend.setForm(LegendForm.CIRCLE);// 样式
 mLegend.setFormSize(6f);// 字体
 mLegend.setTextColor(Color.WHITE);// 颜色
// mLegend.setTypeface(mTf);// 字体
 lineChart.animateX(2500); // 立即执行的动画,x轴
 }
 /**
 * 生成一个数据
 * @param count 表示图表中有多少个坐标点
 * @param range 用来生成range以内的随机数
 * @return
 */
 private LineData getLineData(int count, float range) {
 ArrayList<String> xValues = new ArrayList<String>();
 for (int i = 0; i < count; i++) {
 // x轴显示的数据,这里默认使用数字下标显示
 xValues.add("" + i);
 }
 // y轴的数据
 ArrayList<Entry> yValues = new ArrayList<Entry>();
 for (int i = 0; i < count; i++) {
 float value = (float) (Math.random() * range) + 3;
 yValues.add(new Entry(value, i));
 }
 // create a dataset and give it a type
 // y轴的数据集合
 LineDataSet lineDataSet = new LineDataSet(yValues, "测试折线图" /*显示在比例图上*/);
 // mLineDataSet.setFillAlpha(110);
 // mLineDataSet.setFillColor(Color.RED);
 //用y轴的集合来设置参数
 lineDataSet.setLineWidth(1.75f); // 线宽
 lineDataSet.setCircleSize(3f);// 显示的圆形大小
 lineDataSet.setColor(Color.WHITE);// 显示颜色
 lineDataSet.setCircleColor(Color.WHITE);// 圆形的颜色
 lineDataSet.setHighLightColor(Color.WHITE); // 高亮的线的颜色
 ArrayList<LineDataSet> lineDataSets = new ArrayList<LineDataSet>();
 lineDataSets.add(lineDataSet); // add the datasets
 // create a data object with the datasets
 LineData lineData = new LineData(xValues, lineDataSets);
 return lineData;
 }
}

效果图如下:

Android MPAndroidChart开源库图表之折线图的实例代码

折线图还有另外一种表现形式,就是折线平滑,然后折线与X轴之间可以任意填充自己想要的颜色,其实就是一些属性设置的问题,代码如下:

在上面的getLineData()函数中添加自己的设置:

Android MPAndroidChart开源库图表之折线图的实例代码

效果图如下:

Android MPAndroidChart开源库图表之折线图的实例代码

关于MPAndroidChart填充式的折线图网上的帖子很少,基本没有。这个是自己在网上搜索其他开源图表库,如JFreeChart...加上自己看源码才总结出来的,不知道对不对,但是看效果,基本上没问题。如果大家发现有问题,欢迎大家指正!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/shineflowers/article/details/44704723

延伸 · 阅读

精彩推荐