! Sets the fixed tick interval to \a step. The axis ticker will only use this tick step when generating axis ticks. This might cause a very high tick density and overlapping labels if the axis range is zoomed out. Using \ref setScaleStrategy it is possible to relax the fixed step and also allow multiples or powers of \a step. This will enable the ticker to reduce the number of ticks t
| 7129 | setTickCount). |
| 7130 | */ |
| 7131 | void QCPAxisTickerFixed::setTickStep(double step) |
| 7132 | { |
| 7133 | if (step > 0) |
| 7134 | mTickStep = step; |
| 7135 | else |
| 7136 | qDebug() << Q_FUNC_INFO << "tick step must be greater than zero:" << step; |
| 7137 | } |
| 7138 | |
| 7139 | /*! |
| 7140 | Sets whether the specified tick step (\ref setTickStep) is absolutely fixed or whether |