如何修复核心图中x轴和y轴之间的间隙

时间:2015-02-18 00:58:15

标签: ios core-plot

我正在使用[_graph.defaultPlotSpace scaleToFitPlots:[_graph allPlots]];

如果没有任何一个图的y值为0,则Y轴底部与X轴之间存在间隙。

我尝试过使用_graph.axisSet.xAxis.orthogonalCoordinateDecimal = CPTDecimalFromDouble(0.0); 以及计算的yMin而不是0.0。

然而,我仍然得到这个: enter image description here

我还试图重新缩放绘图空间,因此:

[_graph.defaultPlotSpace setPlotRange:r forCoordinate:CPTCoordinateY];

但无法弄清楚如何为r设置新的minLimit。

1 个答案:

答案 0 :(得分:1)

使用axisConstraints将x轴定位在绘图区域的下边缘:

x.axisConstraints = [CPTConstraints constraintWithLowerOffset:0.0];