Как объединить два линейных графика в один граф с помощью jfreechart? - PullRequest
0 голосов
/ 30 марта 2011

Я использую jfreechart, чтобы показать линейный график.Я хочу использовать тот же график, чтобы показать другой линейный график.Может кто-нибудь сказать мне, как это сделать?Заранее спасибо

1 Ответ

1 голос
/ 30 марта 2011
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);

Тогда мы можем получить график с этим графиком.

...