| 1183 | |
| 1184 | STD_SETTER_CMD_IMPL_F_S(CartesianPlot, SetNiceExtend, bool, niceExtend, niceExtendChanged) |
| 1185 | void CartesianPlot::setNiceExtend(const bool value) { |
| 1186 | Q_D(CartesianPlot); |
| 1187 | if (value != d->niceExtend) |
| 1188 | exec(new CartesianPlotSetNiceExtendCmd(d, value, ki18n("%1: set nice extend"))); |
| 1189 | } |
| 1190 | |
| 1191 | STD_SETTER_CMD_IMPL_F_S(CartesianPlot, SetRangeLastValues, int, rangeLastValues, rangeChanged) |
| 1192 | void CartesianPlot::setRangeLastValues(int values) { |
no outgoing calls