如何在JChart2D上进行个人积分?
我在 Java 桌面应用程序中使用 JChart2D,并遵循该示例:
http://jchart2d.sourceforge.net/ use.shtml
该示例在点之间建立了连接,但是我需要单独的点。
我的意思是我得到类似的东西:
但我想要类似的东西:
PS: 图形示例有所不同,只是我想显示各个点之间和点之间的线之间的差异。
I am using JChart2D for my Java desktop application and followed that example:
http://jchart2d.sourceforge.net/usage.shtml
That example makes connections between points however I need individual points.
I mean I get something like:
But I want something like:
PS: Graphic examples are different just I wanted to show difference between individual points and line between points.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
接近,但没有雪茄。正确的 API 调用是:
调用
就可以了。
Close, but no cigar. The correct API Call is:
The call
does the trick.
我认为答案就在您上面发布的链接中。
创建跟踪(ITrace2D) 并设置 PointPainter例如到 PointPainterDisc。
源自 API javadoc:
I think the answer lies in the link you posted above.
Create a trace (instance of ITrace2D) and set the PointPainter e.g. to PointPainterDisc.
Derived from the API javadoc: