I am sure that the following thread will help you

http://www.jfree.org/phpBB2/viewtopic.php?t=12244
Good Luck
Birgi
Code: Select all
ChartPanel cp1 = new ChartPanel(chart1);
ChartPanel cp2 = new ChartPanel(chart2);
...
JPanel panel = new JPanel();
... // panel properties
panel.add(cp1);
panel.add(cp2);
...