滚动时图形数据重叠轴标签

时间:2018-07-16 21:03:38

标签: android-graphview

启用滚动和/或缩放比例时,图形上的数据与图形的y轴重叠。 y轴标签可以覆盖,数据也可能溢出到右侧。有解决此问题的方法吗?

代码:

// min and max are the first and last X-values of the data
graph.getViewport().setXAxisBoundsManual(true);
graph.getViewport().setMinX(min);
graph.getViewport().setMaxX(max);
graph.getViewport().setScalable(true);
graph.getGridLabelRenderer().setNumHorizontalLabels(3); 
graph.getGridLabelRenderer().setHumanRounding(false);

enter image description here

编辑:当在Y轴上启用缩放时,也会出现此现象,只有它与X轴重叠。

0 个答案:

没有答案