! 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 */
| 8089 | \see setSubTickLength, setTickLengthIn, setTickLengthOut |
| 8090 | */ |
| 8091 | void 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 |
nothing calls this directly
no outgoing calls
no test coverage detected