if i have a my Jpanel and a my JFreeChart. How can I add this Chart in to the JPanel?
XYSeries series = new XYSeries(\"XYGraph\");
series.add(1, 1);
se
I was having the same problem but I was able to identify a way to solve this.
JPanel panel = new JPanel();
panel.setBackground(new Color(255, 102, 51));
panel.setBounds(50, 64, 955, 888);
frame.getContentPane().add(panel);
panel.setLayout(null); //Absolute Layout
XYSeries series = new XYSeries("XY Chart");
XYSeriesCollection dataset = new XYSeriesCollection(series);
JFreeChart chart = ChartFactory.createTimeSeriesChart("Testing Chart", "Date", "Average Profit", dataset);
ChartPanel chartPanel = new ChartPanel((JFreeChart) null);
chartPanelH2S.setChart(chart);
chartPanelH2S.setBounds(39, 193, 419, 309);
panel.add(chartPanel);
frame.setVisible(true);
Hope this helps