MCPcopy Index your code
hub / github.com/Audio4Linux/JDSP4Linux / setTickStep

Method setTickStep

3rdparty/qcustomplot/qcustomplot.cpp:7131–7137  ·  view source on GitHub ↗

! 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

Source from the content-addressed store, hash-verified

7129 setTickCount).
7130*/
7131void 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

Callers 1

QCPPolarAxisAngularMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected