| 563 | } |
| 564 | |
| 565 | void BoxPlotDock::rugWidthChanged(double value) const { |
| 566 | CONDITIONAL_RETURN_NO_LOCK; |
| 567 | |
| 568 | const double width = Worksheet::convertToSceneUnits(value, Worksheet::Unit::Point); |
| 569 | for (auto* curve : std::as_const(m_boxPlots)) |
| 570 | curve->setRugWidth(width); |
| 571 | } |
| 572 | |
| 573 | void BoxPlotDock::rugOffsetChanged(double value) const { |
| 574 | CONDITIONAL_RETURN_NO_LOCK; |
nothing calls this directly
no test coverage detected