双面条形图?
我是 coreplot 框架的新手,现在正在使用条形图模型,并且有了一些想法,现在我想做双面条形图(我需要 y 轴左右角)
否则我需要移动以下 y 坐标范围值我移动到图表上的不同 x 位置...
plotSpace.globalYRange = [CPPlotRange plotRangeWithLocation:CPDecimalFromInteger(0) length:CPDecimalFromInteger(100)];
plotSpace.yRange =plotSpace.globalYRange;
提前致谢
Am new to coreplot framework, rite now am working in barchart model and got some idea bt now i want to do double sided barChart (i need y axis both left and right corner)
OtherWise i need to move this following range value for y coordinate when i move over the different x position on the graph....
plotSpace.globalYRange = [CPPlotRange plotRangeWithLocation:CPDecimalFromInteger(0) length:CPDecimalFromInteger(100)];
plotSpace.yRange =plotSpace.globalYRange;
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以根据需要添加任意数量的轴。如果您希望两个 y 轴具有相同的比例,则可以使用单个绘图空间。有关向图表添加第三个轴的示例,请参阅 CPTestApp 的 Mac 版本。
You can add as many axes as you need. If you want both y-axes to have the same scale, you can use a single plot space. See the Mac version of CPTestApp for an example of adding a third axis to the graph.