绘制 CPBarPlot 时如何将最后一个索引值设置为第一个?
我想在调用重新加载数据时加载带有最后 10 个索引值的 CPBarPlot,是否有任何函数可以实现这样的功能....
提前致谢
I want to load the CPBarPlot with Last 10 index values when the reload data is called, is any function there to achieve like this....
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由您决定要绘制的数据。只需在
-numberOfRecordsForPlot:
中返回 10 并计算出-numberForPlot:field:recordIndex:
中索引的偏移量。例如,如果您的数据集有 50 个点,而 Core Plot 要求提供索引 5 处的数据,则返回索引 50 - 10 + 5 = 45 处的点。It's up to you to determine the data to be plotted. Just return 10 in
-numberOfRecordsForPlot:
and figure out the amount to offset the index in-numberForPlot:field:recordIndex:
. For instance, if your data set has 50 points and Core Plot asks for the data at index 5, return the point at index 50 - 10 + 5 = 45.