在CorePlot中更改轴上数字的大小

时间:2017-10-07 16:57:26

标签: swift graph core-plot

如何更改轴上的数字大小?我需要在y轴上嵌入100个数字但是现在它看起来很糟糕

1 个答案:

答案 0 :(得分:0)

您可以使用文字样式更改文字大小。在主轴刻度标签的轴上设置labelTextStyle和/或为次刻度标签设置minorTickLabelTextStyle

设置文字样式的示例代码:

CPTMutableTextStyle *textStyle = [CPTMutableTextStyle textStyle];
textStyle.color    = [CPTColor grayColor];
textStyle.fontName = @"Helvetica-Bold";
textStyle.fontSize = 18.0;