2014-03-07 50 views
1

如何在該區域以紅色標記的圖形名稱左側添加按鈕?Java JFreeChart - 如何將按鈕添加到圖形名稱的左側?

enter image description here

chartPanel.setDomainZoomable(false); 
    chartPanel.setRangeZoomable(false); 
    chartPanel.setPopupMenu(null); 
    frame = new JFrame(Title); 
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
    frame.add(chartPanel); 
    frame.pack(); 
    frame.setLocationRelativeTo(null); 
    frame.setVisible(true); 

回答

1

爲了便於headless服務器上使用,一個JFreeChart一個Swing JComponent。典型的Swing方法是將圖表放在ChartPanel中,並將面板添加到合適的layout。將控件添加到相鄰面板,如herehere所示,使用BorderLayout.SOUTH

相關問題