Constructs the PlottingFrame with the given frame title and axes labels. @param xlabel String @param ylabel String @param frameTitle String
(String xlabel, String ylabel, String frameTitle)
| 62 | * @param frameTitle String |
| 63 | */ |
| 64 | public PlotFrame(String xlabel, String ylabel, String frameTitle) { |
| 65 | super(new PlottingPanel(xlabel, ylabel, null)); |
| 66 | setTitle(frameTitle); |
| 67 | drawingPanel.addDrawable(datasetManager); |
| 68 | datasetManager.setXPointsLinked(true); |
| 69 | setAnimated(true); |
| 70 | setAutoclear(true); |
| 71 | addMenuItems(); |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * Sets the name of this component and the Dataset Manager. |
nothing calls this directly
no test coverage detected