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

Method setXTicks

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

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)

Source from the content-addressed store, hash-verified

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

Callers 1

setAxesMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected