核心图条形图绘制问题
我正在构建一个绘制条形图的应用程序。 写下这一行时,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设这些数字用于 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.