! Sets the length of the inward ticks in pixels. \a inside is the length the ticks will reach inside the plot. \see setTickLengthOut, setTickLength, setSubTickLength */
| 8101 | \see setTickLengthOut, setTickLength, setSubTickLength |
| 8102 | */ |
| 8103 | void QCPAxis::setTickLengthIn(int inside) |
| 8104 | { |
| 8105 | if (mAxisPainter->tickLengthIn != inside) |
| 8106 | { |
| 8107 | mAxisPainter->tickLengthIn = inside; |
| 8108 | } |
| 8109 | } |
| 8110 | |
| 8111 | /*! |
| 8112 | Sets the length of the outward ticks in pixels. \a outside is the length the ticks will reach |
nothing calls this directly
no outgoing calls
no test coverage detected