android MPandroidChar如何使画的点和x轴的label整体向右偏移固定距离

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android MPandroidChar如何使画的点和x轴的label整体向右偏移固定距离相关的知识,希望对你有一定的参考价值。

第一步当然是引入框架

android Studio/Gradle

Maven Central/jCenter, add dependency to your build.gradle:
dependencies
compile ‘com.github.lecho:hellocharts-library:1.5.8@aar’


JitPack.io, add jitpack.io repositiory and dependency to your build.gradle:
repositories
maven
url “https://jitpack.io”



dependencies
compile ‘com.github.lecho:hellocharts-android:v1.5.8’


-
-

布局文件

<lecho.lib.hellocharts.view.LineChartView
android:id="@+id/chart"
android:layout_width="match_parent"
android:layout_height="200dp" />
1
2
3
4
核心代码
public class CartActivity extends AppCompatActivity

private int totalDays = 20;//总共有多少天的数据显示
private float minY = 0f;//Y轴坐标最小值
private float maxY = 100f;//Y轴坐标最大值

String[] labelsX = new String[totalDays];//X轴的标注
int[] valuesY = new int[totalDays];//图表的数据点

private List<PointValue> mPointValues = new ArrayList<PointValue>();
private List<AxisValue> mAxisXValues = new ArrayList<AxisValue>();
private List<AxisValue> mAxisYValues = new ArrayList<AxisValue>();

private LineChartView lineChart;
参考技术A Maven Central/jCenter, add dependency to your build.gradle:

以上是关于android MPandroidChar如何使画的点和x轴的label整体向右偏移固定距离的主要内容,如果未能解决你的问题,请参考以下文章

开源高效的直播源码,为您解析直播系统功能

亿图画流程图的小技巧

别着急开发直播源码,先学会辨别区分直播系统好坏的方法!

android 如何修改默认时间?

Android:android如何支持java? [关闭]

Android:如何旋转LinearLayout