! Scales the range of this axis by \a factor around the center of the current axis range. For example, if \a factor is 2.0, then the axis range will double its size, and the point at the axis range center won't have changed its position in the QCustomPlot widget (i.e. coordinates around the center will have moved symmetrically closer). If you wish to scale around a different coordinate
| 8438 | overload \ref scaleRange(double factor, double center). |
| 8439 | */ |
| 8440 | void QCPAxis::scaleRange(double factor) |
| 8441 | { |
| 8442 | scaleRange(factor, range().center()); |
| 8443 | } |
| 8444 | |
| 8445 | /*! \overload |
| 8446 |
no test coverage detected