如何使用jfreechart将两个折线图组合成一个图形?

时间:2011-03-30 05:46:14

标签: jfreechart

我正在使用jfreechart来显示折线图。我想使用相同的图表来显示另一个折线图。谁能告诉我怎么做? 提前致谢

1 个答案:

答案 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);

然后我们可以用这个图表得到图表。