gpt4 book ai didi

ios - 在 Core Plot 中设置轴文本样式

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:16:21 25 4
gpt4 key购买 nike

所以我正在实现一个带有核心图的条形图,目前我的 y 轴是这样的

enter image description here

我想要做的是从所有实例中删除尾随的 .0,并且不确定我需要设置什么属性,我需要重写什么方法或者我需要子类化什么类来编辑显示样式。

非常感谢任何能提供帮助的人。

最佳答案

尝试使用合适的 NSNumberFormatter 设置 labelformatter。

例如:-

NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init];
[numberFormatter setNumberStyle:NSNumberFormatterDecimalStyle];
[numberFormatter setMaximumFractionDigits:0];
[numberFormatter setMinimumFractionDigits:0];
CPTXYAxis *y = axisSet.yAxis;
y.labelFormatter = numberFormatter;

关于ios - 在 Core Plot 中设置轴文本样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14594469/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com