Add a JFreeChart in to JPanel

后端 未结 4 884
暖寄归人
暖寄归人 2021-01-11 11:04

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         


        
4条回答
  •  被撕碎了的回忆
    2021-01-11 11:08

    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

提交回复
热议问题