| 1029 | |
| 1030 | STD_SETTER_CMD_IMPL_F_S(Axis, SetLabelsBackgroundColor, QColor, labelsBackgroundColor, update) |
| 1031 | void Axis::setLabelsBackgroundColor(const QColor& color) { |
| 1032 | Q_D(Axis); |
| 1033 | if (color != d->labelsBackgroundColor) |
| 1034 | exec(new AxisSetLabelsBackgroundColorCmd(d, color, ki18n("%1: set label background color"))); |
| 1035 | } |
| 1036 | |
| 1037 | STD_SETTER_CMD_IMPL_F_S(Axis, SetLabelsPrefix, QString, labelsPrefix, retransformTickLabelStrings) |
| 1038 | void Axis::setLabelsPrefix(const QString& prefix) { |
no outgoing calls
no test coverage detected