核心图:更改 x 轴标签(即用 1 年、2 年等代替 12、24、26)

发布于 2024-11-17 23:17:18 字数 176 浏览 10 评论 0原文

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

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

My Core-Plot project incorporates ages on the X axis so the index is displayed in intervals of 12, which works find for months, but I want to show years instead. A previous project displays dates here, so I was hoping to use a similar function but so far have been unable.

Can anyone point me in a direction to display a custom x axis interval label so I can modify my index from 12, 24, 36 to 1 year, 2 year, 3 year (like the title)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独木成林 2024-11-24 23:17:18

设置一个 NSNumberFormatter 以按照您想要的方式格式化标签,并告诉轴使用它来格式化标签。像这样的东西:

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

Set up an NSNumberFormatter to format the labels the way you want and tell the axis to use it to format the labels. Something like this:

NSNumberFormatter *newFormatter = [[NSNumberFormatter alloc] init];
newFormatter.minimumIntegerDigits = 1;
newFormatter.setPositiveSuffix = @" year";
xAxis.labelFormatter = newFormatter;
[newFormatter release];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文