CORE PLOT 在垂直条形图中再添加一张图表
您好,我想制作条形图,如下所示
我想使用 coreplot 示例绘制图表:(coreplot gallery - 垂直条形图)
当前默认代码绘制的图表如下所示
我怎样才能实现这一点?
我尝试添加另一个图表,但效果不佳。
请帮助和建议
谢谢
Hi I want to make bar chart as shown here
I want to plot graph using coreplot example : (coreplot gallery- Vertical Bar Chart)
Currently default code plots the graph as shown below
How can I achieve this?
I tried adding another graph but didn't work out well.
Please Help and Suggest
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我的解决方案:
在您的代码中,您需要添加以下内容:
plot.identifier 行在这里很重要,它们检查哪些数据取,这里占空或者加锁。
当然,您需要设置这些标识符,我在 -(void) 负载图中执行此操作:
这里设置了我的标识符之一。要显示 x 轴以下的值,您需要更改范围:
希望这会有所帮助。
Here is my solution:
In your code you need to add the following:
The lines plot.identifier are here important, they check which data to take, here occupied empty or locked.
Of course you need to set these identifiers, I do this in a -(void) loadgraph:
Here one of my identifier is set. To display values below the x-axe you need to change your range:
Hope this helps.
我是这样做的:
定义 2 个数组,一个包含标签,一个包含放置它们的值,定义“CPXAxisLabel”并将它们放入另一个数组中,然后可以将该数组放在图形上。
希望这有帮助。
This is how I do this:
You define 2 array, one with the labels and one with the values where to put them, define "CPXAxisLabel"s and put them in another array, and this array you can put on your graph.
Hope this helps.