! Sets the length of the outward ticks in pixels. \a outside is the length the ticks 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 setTickLengthIn, setTickLength, setSubTickLength */
| 8116 | \see setTickLengthIn, setTickLength, setSubTickLength |
| 8117 | */ |
| 8118 | void QCPAxis::setTickLengthOut(int outside) |
| 8119 | { |
| 8120 | if (mAxisPainter->tickLengthOut != outside) |
| 8121 | { |
| 8122 | mAxisPainter->tickLengthOut = outside; |
| 8123 | mCachedMarginValid = false; // only outside tick length can change margin |
| 8124 | } |
| 8125 | } |
| 8126 | |
| 8127 | /*! |
| 8128 | Sets whether sub tick marks are displayed. |
nothing calls this directly
no outgoing calls
no test coverage detected