| 980 | |
| 981 | STD_SETTER_CMD_IMPL_F_S(Axis, SetLabelsRotationAngle, qreal, labelsRotationAngle, retransformTickLabelPositions) |
| 982 | void Axis::setLabelsRotationAngle(qreal angle) { |
| 983 | Q_D(Axis); |
| 984 | if (angle != d->labelsRotationAngle) |
| 985 | exec(new AxisSetLabelsRotationAngleCmd(d, angle, ki18n("%1: set label rotation angle"))); |
| 986 | } |
| 987 | |
| 988 | STD_SETTER_CMD_IMPL_F_S(Axis, SetLabelsTextType, Axis::LabelsTextType, labelsTextType, retransformTicks) |
| 989 | void Axis::setLabelsTextType(LabelsTextType type) { |
no outgoing calls
no test coverage detected