我想对我的Y米宽度和距离使用纬度。 目前,这是我利用的:
plotSpace.xRange = [CPPlotRange
plotRangeWithLocation:CPDecimalFromFloat(0.0)
length:CPDecimalFromUnsignedInteger(sortedArray.count)];
plotSpace.yRange = [CPPlotRange
plotRangeWithLocation:CPDecimalFromFloat(min)
length:CPDecimalFromFloat((max - min))];
这并没有正确确定X的距离,因为它只是将X的距离确定到阵列中点数,即约2 500点。 我已尝试将XRange设定为我距离阵列的最大值,但这确实使图表变得模糊不清。
我如何能够有两种不同的X和 y比额表,而且图表仍然正确?
Here is what it looks like when I change the xRange to be my distance, the graph goes flat: