隐藏x轴的0-100部分,通过将可见范围设置为0-100,使y轴消失
我该如何解决这个问题?
答案 0 :(得分:1)
它可能不会消失,而是可能在屏幕的左/右,假设两个轴都不在(0,0)相交。如果您在绘图空间上启用交互(plotSpace.allowsUserInteraction = YES;),您可以捏缩放并查看是否存在。
此外,您可以尝试通过向它们添加约束来使轴“固定”:
CPTXYAxisSet *axisSet = (CPTXYAxisSet *) self.hostView.hostedGraph.axisSet;
// Configure x-axis
CPTXYAxis *x = axisSet.xAxis;
CPTXYAxis *y = axisSet.yAxis;
x.axisConstraints = [CPTConstraints constraintWithLowerOffset:50];
y.axisConstraints = [CPTConstraints constraintWithLowerOffset:50];