97
ChartFrame Class
- ChartFrame class comes under the org.jfree.chart package of JFreeChart library.
- This class represents the frame which holds one or more charts.
- This class provides all frame related functions and utilities.
Constructor:
Constructor | Description |
---|---|
ChartFrame(String title, JFreeChart chart) | It constructs a frame for a chart. |
ChartFrame(String title, JFreeChart chart, boolean scrollPane) | It constructs a frame for a chart. |
Method Summary:
Method | Description |
---|---|
getChartPanel( ) | This method returns the chart panel for the frame. |
Next TopicPiePlot class