Sets the X Axis format to Log or Linear. Call update() thereafter to make the change visible (if it is shown already).
(boolean axisXLog)
| 727 | /** Sets the X Axis format to Log or Linear. |
| 728 | * Call update() thereafter to make the change visible (if it is shown already). */ |
| 729 | public void setAxisXLog(boolean axisXLog) { |
| 730 | pp.axisFlags = axisXLog ? pp.axisFlags | X_LOG_NUMBERS : pp.axisFlags & (~X_LOG_NUMBERS); |
| 731 | } |
| 732 | |
| 733 | /** Sets the Y Axis format to Log or Linear. |
| 734 | * Call update() thereafter to make the change visible (if it is shown already). */ |
no outgoing calls
no test coverage detected