Sets the Y Axis format to Log or Linear. Call update() thereafter to make the change visible (if it is shown already).
(boolean axisYLog)
| 733 | /** Sets the Y Axis format to Log or Linear. |
| 734 | * Call update() thereafter to make the change visible (if it is shown already). */ |
| 735 | public void setAxisYLog(boolean axisYLog) { |
| 736 | pp.axisFlags = axisYLog ? pp.axisFlags | Y_LOG_NUMBERS : pp.axisFlags & (~Y_LOG_NUMBERS); |
| 737 | } |
| 738 | |
| 739 | /** Sets whether to show major ticks at the x axis. |
| 740 | * Call update() thereafter to make the change visible (if the image is shown already). */ |
no outgoing calls
no test coverage detected