MCPcopy Create free account
hub / github.com/CieNTi/serial_port_plotter / setTickLength

Method setTickLength

qcustomplot/qcustomplot.cpp:8091–8095  ·  view source on GitHub ↗

! Sets the length of the ticks in pixels. \a inside is the length the ticks will reach inside the plot and \a outside is the length they will reach outside the plot. If \a outside is greater than zero, the tick labels and axis label will increase their distance to the axis accordingly, so they won't collide with the ticks. \see setSubTickLength, setTickLengthIn, setTickLengthOut */

Source from the content-addressed store, hash-verified

8089 \see setSubTickLength, setTickLengthIn, setTickLengthOut
8090*/
8091void QCPAxis::setTickLength(int inside, int outside)
8092{
8093 setTickLengthIn(inside);
8094 setTickLengthOut(outside);
8095}
8096
8097/*!
8098 Sets the length of the inward ticks in pixels. \a inside is the length the ticks will reach

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected