如何更改轴上的数字大小?我需要在y轴上嵌入100个数字但是现在它看起来很糟糕
答案 0 :(得分:0)
您可以使用文字样式更改文字大小。在主轴刻度标签的轴上设置labelTextStyle
和/或为次刻度标签设置minorTickLabelTextStyle
。
设置文字样式的示例代码:
CPTMutableTextStyle *textStyle = [CPTMutableTextStyle textStyle];
textStyle.color = [CPTColor grayColor];
textStyle.fontName = @"Helvetica-Bold";
textStyle.fontSize = 18.0;