! Sets whether sub tick marks are displayed. Sub ticks are only potentially visible if (major) ticks are also visible (see \ref setTicks) \see setTicks */
| 8132 | \see setTicks |
| 8133 | */ |
| 8134 | void QCPAxis::setSubTicks(bool show) |
| 8135 | { |
| 8136 | if (mSubTicks != show) |
| 8137 | { |
| 8138 | mSubTicks = show; |
| 8139 | mCachedMarginValid = false; |
| 8140 | } |
| 8141 | } |
| 8142 | |
| 8143 | /*! |
| 8144 | Sets the length of the subticks in pixels. \a inside is the length the subticks will reach inside |
nothing calls this directly
no outgoing calls
no test coverage detected