| 930 | // Labels |
| 931 | STD_SETTER_CMD_IMPL_F_S(Axis, SetLabelsFormat, Axis::LabelsFormat, labelsFormat, retransformTicks) |
| 932 | void Axis::setLabelsFormat(LabelsFormat labelsFormat) { |
| 933 | DEBUG(Q_FUNC_INFO << ", format = " << ENUM_TO_STRING(Axis, LabelsFormat, labelsFormat)) |
| 934 | Q_D(Axis); |
| 935 | if (labelsFormat != d->labelsFormat) |
| 936 | exec(new AxisSetLabelsFormatCmd(d, labelsFormat, ki18n("%1: set labels format"))); |
| 937 | } |
| 938 | |
| 939 | STD_SETTER_CMD_IMPL_F_S(Axis, SetLabelsFormatAuto, bool, labelsFormatAuto, retransformTicks) |
| 940 | void Axis::setLabelsFormatAuto(bool automatic) { |