答案 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.