MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / setAxisYLog

Method setAxisYLog

ij/src/main/java/ij/gui/Plot.java:735–737  ·  view source on GitHub ↗

Sets the Y Axis format to Log or Linear. Call update() thereafter to make the change visible (if it is shown already).

(boolean axisYLog)

Source from the content-addressed store, hash-verified

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). */

Callers 4

doPlotMethod · 0.95
setAxesMethod · 0.95
setLogScaleYMethod · 0.95
dialogItemChangedMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected