! Sets the length of the subticks in pixels. \a inside is the length the subticks 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 setTickLength, setSubTickLengthIn, setSubTickLength
| 8149 | \see setTickLength, setSubTickLengthIn, setSubTickLengthOut |
| 8150 | */ |
| 8151 | void QCPAxis::setSubTickLength(int inside, int outside) |
| 8152 | { |
| 8153 | setSubTickLengthIn(inside); |
| 8154 | setSubTickLengthOut(outside); |
| 8155 | } |
| 8156 | |
| 8157 | /*! |
| 8158 | Sets the length of the inward subticks in pixels. \a inside is the length the subticks will reach inside |
nothing calls this directly
no outgoing calls
no test coverage detected