核心图,标签长度
使用核心图时,我的图表出现了一些问题。 我使用 2 个数组绘制数据,1 个用于 Y 轴,1 个用于 X 轴,经典。 我的问题是我有这样的值:
Values Array :( “0.105814”, “0.105828”, “0.1058”, “0.105814”, “0.1058”, “0.105793”, “0.105779”, “0.10575”, “0.10575”, “0.10558”
当我显示图表时,我只看到:
我不需要一个“0,1”,而是整个值。我没有找到该参数,所以如果有人知道,我想这并不复杂。
感谢您的帮助!
PS:我知道它不是像核心图中使用的标签那样的“标签”,但我不知道如何称呼它:P 对不起我的英语。
I've a little problem on my graph when using core-plot.
I plot my datas using 2 arrays, 1 for Y axe and 1 for X axe, classic.
My problem is that I have values like this:
Values Array : (
"0.105814",
"0.105828",
"0.1058",
"0.105814",
"0.1058",
"0.105793",
"0.105779",
"0.10575",
"0.10575",
"0.10558"
And when I display the graph, I just see that:
And I don't want one "0,1" but the entire value. I didn't find the parameter so if someone know, I guess it's not really complicated.
Thanks for any help!
PS: And I know it's not "label" like labels are used in core-plot but I don't know how to call it :P
And sorry for my English.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每个轴都有一个名为
labelFormatter
的属性。这是一个标准的NSNumberFormatter
。您可以创建一个新的格式化程序,以您想要的任何方式格式化标签。请参阅 Apple 文档 了解详情。Each axis has a property called
labelFormatter
. This is a standardNSNumberFormatter
. You can create a new formatter that formats the labels any way you want. See Apple's docs for details.