Sets the xLabelFont; must not be null. If this method is not used, the last setFont of setFontSize call before displaying the plot determines the font, or if neither was called, the font size of the Plot Options is used.
(Font font)
| 1294 | * of setFontSize call before displaying the plot determines the font, or if neither |
| 1295 | * was called, the font size of the Plot Options is used. */ |
| 1296 | public void setXLabelFont(Font font) { |
| 1297 | pp.xLabel.setFont(font); |
| 1298 | } |
| 1299 | |
| 1300 | /** Sets the yLabelFont; must not be null. */ |
| 1301 | public void setYLabelFont(Font font) { |
no test coverage detected