Java – add JfreeChart to JPanel
•
Java
If I have a my JPanel and a my JfreeChart How do I add this chart to JPanel?
XYSeries series = new XYSeries("XYGraph"); series.add(1,1); series.add(1,2); series.add(2,1); series.add(3,9); series.add(4,10); // Add the series to your data set XYSeriesCollection dataset = new XYSeriesCollection(); dataset.addSeries(series); // Generate the graph JFreeChart chart = ChartFactory.createXYLineChart( "XY Chart",// Title "x-axis",// x-axis Label "y-axis",// y-axis Label dataset,// Dataset PlotOrientation.VERTICAL,// Plot Orientation true,// Show Legend true,// Use tooltips false // Configure chart to generate URLs? );
Now how can I add charts to my jpanle?
Solution
From old Java forums thread
JPanel jPanel1 = new JPanel(); jPanel1.setLayout(new java.awt.BorderLayout()); .. ChartPanel CP = new ChartPanel(chart); .. jPanel1.add(CP,BorderLayout.CENTER); jPanel1.validate();
The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
二维码