! Sets the number of sub ticks that shall appear between ticks. For QCPAxisTickerText, there is no automatic sub tick count calculation. So if sub ticks are needed, they must be configured with this method. */
| 6581 | method. |
| 6582 | */ |
| 6583 | void QCPAxisTickerText::setSubTickCount(int subTicks) |
| 6584 | { |
| 6585 | if (subTicks >= 0) |
| 6586 | mSubTickCount = subTicks; |
| 6587 | else |
| 6588 | qDebug() << Q_FUNC_INFO << "sub tick count can't be negative:" << subTicks; |
| 6589 | } |
| 6590 | |
| 6591 | /*! |
| 6592 | Clears all ticks. |
nothing calls this directly
no outgoing calls
no test coverage detected