()
| 176 | } |
| 177 | |
| 178 | protected void logAxes() { |
| 179 | if (!(drawingPanel instanceof PlottingPanel)) { |
| 180 | return; |
| 181 | } |
| 182 | LogAxesInspector logAxesInspector = new LogAxesInspector((PlottingPanel) drawingPanel); |
| 183 | logAxesInspector.setLocationRelativeTo(drawingPanel); |
| 184 | logAxesInspector.updateDisplay(); |
| 185 | logAxesInspector.setVisible(true); |
| 186 | } |
| 187 | |
| 188 | /** |
| 189 | * Appends an (x,y) datum to the Dataset with the given index. |
no test coverage detected