核心图:更改 x 轴标签(即用 1 年、2 年等代替 12、24、26)
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置一个
NSNumberFormatter
以按照您想要的方式格式化标签,并告诉轴使用它来格式化标签。像这样的东西: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: