| 569 | // Symbols |
| 570 | STD_SETTER_CMD_IMPL_F_S(BoxPlot, SetJitteringEnabled, bool, jitteringEnabled, recalc) |
| 571 | void BoxPlot::setJitteringEnabled(bool enabled) { |
| 572 | Q_D(BoxPlot); |
| 573 | if (enabled != d->jitteringEnabled) |
| 574 | exec(new BoxPlotSetJitteringEnabledCmd(d, enabled, ki18n("%1: jitterring changed"))); |
| 575 | } |
| 576 | |
| 577 | // margin plots |
| 578 | STD_SETTER_CMD_IMPL_F_S(BoxPlot, SetRugEnabled, bool, rugEnabled, updateRug) |
no outgoing calls
no test coverage detected