1
如何將X軸標籤的文本右移(水平)? 我希望能夠在兩個x-ticks之間顯示一個字符串(例如| Jan | Feb | ...),而不是跨越x-tick。如何將Core-Plot X標籤移動到滴答聲之間?
我試過如下:
newLabel = [[CPTAxisLabel alloc] initWithText:item.month textStyle:x.labelTextStyle];
newLabel.tickLocation = [[NSDecimalNumber numberWithInt:index] decimalValue];
CGPoint myPoint = newLabel.contentLayer.position;
CGFloat x = myPoint.x;
CGPoint yourPoint = myPoint;
yourPoint.x += 16.0;
[newLabel positionBetweenViewPoint:myPoint andViewPoint:yourPoint forCoordinate:CPTCoordinateX inDirection:CPTSignPositive];
...但我得到了一個SIGABRT錯誤(崩潰)。
一個例子勝過千言萬語。
問候, 裏克