Swift 中设置的 Coreplot 轴的轴约束

Axis constraint for Coreplot axis set in Swift

目前,我正在将基于 objective-C 的绘图应用程序转换为 swift,并且大多数部分都是牛油刀,但当涉及到 轴定位

在 objective-C 中,我使用以下两行 固定图上的轴 ,

CPTXYAxisSet *axisSet = (CPTXYAxisSet *)graph.axisSet;
CPTXYAxis *x = axisSet.xAxis;

x.orthogonalPosition = @0.0
x.axisConstraints = [CPTConstraints constraintsWithLowerOffset: 0.0];

这里的问题是,swift 实现没有这两个属性

因此,如果有人知道执行此操作的正确方法或任何修复图中轴的解决方法,请提供帮助。提前致谢。

试试这个:

x.orthogonalPosition = 0.0
x.axisConstraints = CPTConstraints(lowerOffset: 0.0)