我正在使用jfreechart来显示折线图。我想使用相同的图表来显示另一个折线图。谁能告诉我怎么做? 提前致谢
答案 0 :(得分:1)
JFreeChart chart = ... //Get the chart with your first dataset.
CategoryPlot plot = chart.getCategoryPlot();
plot.setDataset(1, anotherDataset); //The '1' at the first parameter is
//the index of dataset.
//Thus, '1' for the second dataset.
... //some other settings to the plot, with index=1.
plot.setRenderer(1, someRenderer);
然后我们可以用这个图表得到图表。