| 563 | } |
| 564 | |
| 565 | QString CartesianAxis::Private::customizedLabelText(const QString &text, Qt::Orientation orientation, |
| 566 | qreal value) const |
| 567 | { |
| 568 | // ### like in the old code, using int( value ) as column number... |
| 569 | QString withUnits = diagram()->unitPrefix(int(value), orientation, true) + text + diagram()->unitSuffix(int(value), orientation, true); |
| 570 | return axis()->customizedLabel(withUnits); |
| 571 | } |
| 572 | |
| 573 | void CartesianAxis::setTitleSpace(qreal axisTitleSpace) |
| 574 | { |
no test coverage detected