Sets the font size for all following addLabel() etc. operations. The currently set font when displaying the plot determines the font of all labels & numbers. After the plot has been shown, sets the font for the numbers and the legend (if present). If the plot is hown already, call update() thereaft
(int size)
| 1241 | * After the plot has been shown, sets the font for the numbers and the legend (if present). |
| 1242 | * If the plot is hown already, call update() thereafter to make the change visible. */ |
| 1243 | public void setFontSize(int size) { |
| 1244 | setFont(-1, (float)size); |
| 1245 | } |
| 1246 | |
| 1247 | /** Sets the font for all following addLabel() etc. operations. The currently set font when |
| 1248 | * displaying the plot determines the font of all labels & numbers. |