Core-Plot:更改x轴标签(即代替12,24,26为1年,2年等)

时间:2011-06-28 19:33:53

标签: graph label core-plot

我的Core-Plot项目在X轴上包含年龄,因此索引以12为间隔显示,可以找到几个月,但我希望显示年份。之前的项目在这里显示日期,所以我希望使用类似的功能,但到目前为止一直无法使用。

任何人都可以指示我显示自定义x轴间隔标签的方向,以便我可以将我的索引从12,24,36修改为1年,2年,3年(如标题)

1 个答案:

答案 0 :(得分:5)

设置NSNumberFormatter以按您希望的方式格式化标签,并告诉轴使用它来格式化标签。像这样:

NSNumberFormatter *newFormatter = [[NSNumberFormatter alloc] init];
newFormatter.minimumIntegerDigits = 1;
newFormatter.setPositiveSuffix = @" year";
xAxis.labelFormatter = newFormatter;
[newFormatter release];