MPAndroidChart:实时线图从右开始

时间:2019-01-11 08:19:24

标签: android kotlin mpandroidchart

我正在使用real-time line chart,其中图形数据从右向左移动, 但是问题是图形从零(0)开始,因此看起来好像是错误的数据,我希望图形应该从最右边开始并开始向左移动

enter image description here

我尝试了这些但没有用

 val leftAxis = chart.getAxisLeft()
 leftAxis.setEnabled(false)
 leftAxis.setStartAtZero(false)
 **OR**
 leftAxis.mAxisMinimum(3f)

1 个答案:

答案 0 :(得分:1)

使用以下属性:

mChart?.xAxis?.spaceMin = 2.5f // As per you requiedment
mChart?.xAxis?.spaceMax = 0.1f // As per you requiedment