gpt4 book ai didi

java - 在 GRAL 中绘制多个图形

转载 作者:行者123 更新时间:2023-12-01 11:42:38 30 4
gpt4 key购买 nike

我目前正在使用 GRAL 库来绘制线条和数据。由于某种原因,我无法在同一个 XY 图上绘制多条线。这是我的代码:

import java.awt.Color;
import javax.swing.JFrame;
import de.erichseifert.gral.data.DataTable;
import de.erichseifert.gral.plots.XYPlot;
import de.erichseifert.gral.plots.lines.DefaultLineRenderer2D;
import de.erichseifert.gral.plots.lines.LineRenderer;
import de.erichseifert.gral.plots.points.PointRenderer;
import de.erichseifert.gral.ui.InteractivePanel;

public class GraphTest extends JFrame {
public GraphTest(double x1, double y1) {

//SETS DEFAULTS FOR JFRAME
setDefaultCloseOperation(EXIT_ON_CLOSE);
setSize(600, 400);

//CREATES A DATA TABLE AND RUNS A LOOP TO INCREMENTALLY PLOT OUT POINTS OF A SINE CURVE ON THE STEP .25
DataTable data = new DataTable(Double.class, Double.class);
for (double x = -5.0; x <= 5.0; x+=0.25) {
double y = 5.0*Math.sin(x);
data.add(x, y);
}

//PLOT OUT DATA AND SET XYPLOT IN JFRAME, THEN CONNECT LINES AND CHANGE COLORS
XYPlot plot = new XYPlot(data);
getContentPane().add(new InteractivePanel(plot));
LineRenderer lines = new DefaultLineRenderer2D();
plot.setLineRenderer(data, lines);
Color color = new Color(0.0f, 0.3f, 1.0f);
plot.getPointRenderer(data).setColor(color);
plot.getLineRenderer(data).setColor(color);

//PLOT OUT A POINT (4,5) ON THE SAME GRAPH AS THE SINE GRAPH
DataTable data2 = new DataTable(Double.class, Double.class);
data2.add(x1, y1);
XYPlot plot2 = new XYPlot(data2);
//getContentPane().add(new InteractivePanel(plot2));
//plot2.setLineRenderer(data2, lines);
//plot2.getPointRenderer(data2).setColor(color);
//plot2.getLineRenderer(data2).setColor(color);
}

public static void main(double x1, double y1) {
GraphTest frame = new GraphTest(x1, y1);
frame.setVisible(true);
}
}

程序按原样运行良好,但我取消注释以下行以使其在同一个图上绘制两个图:

    //getContentPane().add(new InteractivePanel(plot2));
//plot2.setLineRenderer(data2, lines);
//plot2.getPointRenderer(data2).setColor(color);
//plot2.getLineRenderer(data2).setColor(color);

JFrame 变得空白,程序似乎卡住了。我是 GRAL 库的初学者(我今天才开始使用它),所以请原谅我缺乏专业知识。另外,仅供引用,此代码是通过同一包中的命令运行的,但另一个类具有以下代码:

GraphTest.main(4,5);

问题是我真的不确定如何在同一个 XY 图上绘制两个图(一条正弦曲线和一个点)。最后,这是当前代码运行时的样子:

enter image description here

最佳答案

这是一个老问题,但这是我解决同样问题的方法:

在创建 XY 图的部分,只需添加更多数据源即可。

来自

XYPlot plot = new XYPlot(data);

XYPlot plot = new XYPlot(data, moreData);

确保单独设置两个数据点的样式。

关于java - 在 GRAL 中绘制多个图形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29405359/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com