Sets whether to show major ticks at the x axis. Call update() thereafter to make the change visible (if the image is shown already).
(boolean xTicks)
| 740 | * Call update() thereafter to make the change visible (if the image is shown already). */ |
| 741 | |
| 742 | public void setXTicks(boolean xTicks) { |
| 743 | pp.axisFlags = xTicks ? pp.axisFlags | X_TICKS : pp.axisFlags & (~X_TICKS); |
| 744 | } |
| 745 | |
| 746 | /** Sets whether to show major ticks at the y axis. |
| 747 | * Call update() thereafter to make the change visible (if the image is shown already). */ |