Sets the labels of the x and y axes. 'xLabel', 'yLabel' may be null. If a label has the form {txt1,txt2,txt3}, the corresponding axis will be labeled not by numbers but rather with the texts "txt1", "txt2" ... instead of 0, 1, ... In this special case, there will be no label for the axis on the p
(String xLabel, String yLabel)
| 689 | * In this special case, there will be no label for the axis on the plot. |
| 690 | * Call update() thereafter to make the change visible (if it is shown already). */ |
| 691 | public void setXYLabels(String xLabel, String yLabel) { |
| 692 | pp.xLabel.label = xLabel!=null ? xLabel : ""; |
| 693 | pp.yLabel.label = yLabel!=null ? yLabel : ""; |
| 694 | } |
| 695 | |
| 696 | /** Sets the maximum number of intervals in a plot. |
| 697 | * Call update() thereafter to make the change visible (if the image is shown already). */ |
no outgoing calls
no test coverage detected