核心图条形图绘制问题

发布于 2024-11-29 19:22:54 字数 502 浏览 0 评论 0原文

我正在构建一个绘制条形图的应用程序。 写下这一行时,

num=(NSDecimalNumber *)[NSDecimalNumber numberWithInt:index];       
return num;

当我在方法中

-(NSNumber *)numberForPlot:(CPTPlot *)plot field:(NSUInteger)fieldEnum recordIndex:(NSUInteger)index 

它工作正常 但我需要传递一个浮点数来绘制 为此

num=(NSDecimalNumber *)[NSDecimalNumber numberWithFloat:f1];
return num;

,我写了所有的条形图一起出现,

我尝试调整 barofset 和 barwidth 但没有

任何解决方案可以帮助我 提前致谢

I am constructing an application that plots a barchart.
when i wrote this line

num=(NSDecimalNumber *)[NSDecimalNumber numberWithInt:index];       
return num;

in the method

-(NSNumber *)numberForPlot:(CPTPlot *)plot field:(NSUInteger)fieldEnum recordIndex:(NSUInteger)index 

it works properly
but i need to pass a float number to plot
for that i wrote

num=(NSDecimalNumber *)[NSDecimalNumber numberWithFloat:f1];
return num;

then all of the bars appears together

i tried to adjust the barofset and barwidth but no solution

can anyone help me
thanks in advance

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

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

发布评论

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

评论(1

倦话 2024-12-06 19:22:54

假设这些数字用于 CPTBarPlotFieldBarLocation 字段,您需要检查相应的绘图空间范围(垂直条形的 xRange 和水平条形的 yRange)。确保绘图空间范围的位置和长度适合您为此字段返回的数字范围。听起来长度太大了。

Assuming these numbers are for the CPTBarPlotFieldBarLocation field, you need to check the corresponding plot space range (xRange for vertical bars and yRange for horizontal). Make sure the location and length of the plot space range are appropriate for the range of numbers you're returning for this field. It sounds like the length is too large.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文