如何在LineChart中设置左右y轴的填充

时间:2017-01-22 16:34:35

标签: java android mpandroidchart

如何在折线图中从左侧y轴和右侧y轴设置填充,如图所示?数据的范围为1n个点。可见的x轴范围最多为5个点。

a picture of a line chart where the first point is not flush with the y-axis and the last point is not flush with the right-hand edge of the chart

1 个答案:

答案 0 :(得分:0)

以下内容对您有用:

mChart.getXAxis().setSpaceMin(5f);
mChart.getAxis().setSpaceMax(5f);

以下是这两种方法的javadoc

  

axisMinimum的额外间距设置为自动计算axisMinimum

  

axisMaximum的额外间距设置为自动计算axisMaximum

正如您所看到的,它们基本上会自动在xAxis上添加空间/填充到最小值和最大值,这正是我们想要的。