Core Plot 2.1固定Y轴

时间:2016-05-22 19:10:06

标签: ios swift core-plot

这里有很多关于如何在CorePlot中修复轴的问题,但是所有这些问题都引用了axisConstraints的{​​{1}}属性,这在CorePlot 2.0及更高版本中是不存在的。

所以问题是如何在核心图2.0和更新版本中修复Y轴?

我在这里没有做任何事情:

CPTXYAxis

1 个答案:

答案 0 :(得分:0)

axisConstraints属性是CPTXYAxis类的一部分。将轴设置为CPTXYAxisSet是在Swift中执行此操作的最简单方法:

let axisSet = graph.axisSet as! CPTXYAxisSet
let y = axisSet.yAxis
y.axisConstraints = CPTConstraints(lowerOffset: 0.0)