我正在尝试在单个窗口中显示多个 jfreecharts。显然,这对于包含的 ChartFrame 是不可能的,所以我尝试将同一个图表的多个副本添加到一个不起作用的 JFrame。有任何想法吗?
JFrame frame = new JFrame("Chart");
frame.getContentPane().add(new ChartPanel(chart1));
frame.getContentPane().add(new ChartPanel(chart2));
frame.pack();
frame.setVisible(true);
使用此代码,我只能在 JFrame 中获得一个图表。
编辑:我添加了另一个数据集和图表,但它仍然只显示其中一个。