| 571 | } |
| 572 | |
| 573 | void BoxPlotDock::rugOffsetChanged(double value) const { |
| 574 | CONDITIONAL_RETURN_NO_LOCK; |
| 575 | |
| 576 | const double offset = Worksheet::convertToSceneUnits(value, Worksheet::Unit::Point); |
| 577 | for (auto* curve : std::as_const(m_boxPlots)) |
| 578 | curve->setRugOffset(offset); |
| 579 | } |
| 580 | |
| 581 | //************************************************************* |
| 582 | //******* SLOTs for changes triggered in BoxPlot ******** |
nothing calls this directly
no test coverage detected