如何在MPAndroidChart中为x轴值设置边距/填充?

时间:2016-07-13 19:32:21

标签: android mpandroidchart

我在x轴叠加上有图表和我的值。 enter image description here

有没有办法解决它?可能我需要在x轴值之间添加一些余量。

2 个答案:

答案 0 :(得分:3)

已经有一段时间了,因为您已经发布了自己的问题,可能现在您找到了解决这个问题的方法,但是,我已经为遇到此问题的其他人发布了此答案。

设置

chart.getXAxis().setSpaceMin(0.5f);

会在X轴线和图表本身之间添加空格。你也可以用

chart.getXAxis().setSpaceMax(0.5f);

用于在图表的最后一个值和右X轴之间添加空格。

以下是normal chart的示例,这个是chart 最小和最大空间为1.5。

顺便说一句,我使用的是MPAndroidChart V3.0.2。

答案 1 :(得分:0)

尝试

 XAxis xAxis = chart.getXAxis();
 xAxis.setSpaceBetweenLabels(int characters) //Sets the space that should be left out between the x-axis labels in characters, default: 4.