如何在JChart2D上进行个人积分?

发布于 2024-11-10 14:48:46 字数 453 浏览 5 评论 0原文

我在 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:

enter image description here

But I want something like:

enter image description here

PS: Graphic examples are different just I wanted to show difference between individual points and line between points.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

遇到 2024-11-17 14:48:47
trace.setTracePainter(new TracePainterDisc());
trace.setTracePainter(new TracePainterDisc());
嗫嚅 2024-11-17 14:48:46

接近,但没有雪茄。正确的 API 调用是:

Chart2D chart = new Chart2D();
ITrace2D trace = new Trace2DSimple();
// Add the trace to the chart:
chart.addTrace(trace);
trace.setTracePainter(new TracePainterDisc(4));

调用

trace.setTracePainter(new TracePainterDisc(4)); 

就可以了。

Close, but no cigar. The correct API Call is:

Chart2D chart = new Chart2D();
ITrace2D trace = new Trace2DSimple();
// Add the trace to the chart:
chart.addTrace(trace);
trace.setTracePainter(new TracePainterDisc(4));

The call

trace.setTracePainter(new TracePainterDisc(4)); 

does the trick.

画尸师 2024-11-17 14:48:46

我认为答案就在您上面发布的链接中。

创建跟踪(ITrace2D) 并设置 PointPainter例如到 PointPainterDisc

源自 API javadoc:

Chart2D test = new Chart2D();
JFrame frame = new JFrame("Chart2D- Debug");

frame.setSize(400,200);
frame.setVisible(true);
ITrace2D atrace = new Trace2DLtd(100);

atrace.setPointHighlighter(new PointPainterDisc(5));
test.addTrace(atrace);
while(expression){
  atrace.addPoint(adouble,bdouble);
  ....
}

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:

Chart2D test = new Chart2D();
JFrame frame = new JFrame("Chart2D- Debug");

frame.setSize(400,200);
frame.setVisible(true);
ITrace2D atrace = new Trace2DLtd(100);

atrace.setPointHighlighter(new PointPainterDisc(5));
test.addTrace(atrace);
while(expression){
  atrace.addPoint(adouble,bdouble);
  ....
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文