循环遍历 JFreechart 中的一系列点
是否可以循环遍历属于 JFreechart 中一系列的点? 谢谢
Is it possible to loop through a the points belonging to a series in JFreechart?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,例如带有一个 XYSeries 的 XYSeriesColleciton,其中包含简单的数字:
这是代码:
Yes, for example a XYSeriesColleciton with one XYSeries that including simple Numbers:
Here is the code:
您可以循环遍历任何给定图中的列和行,但正如trashgod 评论的那样:您应该在数据模型中进行循环。
如果您坚持循环遍历点,可以通过两种方式执行此操作:
对这是在给定系列的数据集上完成的。您应该能够使用以下方法来实现此目的:
有关详细信息,请参阅 JFreeChart 文档此处< /a>,或者购买开发人员手册以深入了解这些类。
You can loop through the columns and the rows in any given plot, but as trashgod commented: you should do the looping in your data model.
If you insist on looping through the points you can do this in two ways:
This is done on the dataset for the given series. You should be able to use the following methods to achieve that:
For more info consult the JFreeChart documentation here, or go buy the developer manual for in-depth explainations of the classes.