绘制 CPBarPlot 时如何将最后一个索引值设置为第一个?

发布于 2024-10-18 23:38:26 字数 78 浏览 1 评论 0原文

我想在调用重新加载数据时加载带有最后 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 技术交流群。

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

发布评论

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

评论(1

信仰 2024-10-25 23:38:26

由您决定要绘制的数据。只需在 -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.

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