| 555 | } |
| 556 | |
| 557 | void BoxPlotDock::rugLengthChanged(double value) const { |
| 558 | CONDITIONAL_RETURN_NO_LOCK; |
| 559 | |
| 560 | const double length = Worksheet::convertToSceneUnits(value, Worksheet::Unit::Point); |
| 561 | for (auto* curve : std::as_const(m_boxPlots)) |
| 562 | curve->setRugLength(length); |
| 563 | } |
| 564 | |
| 565 | void BoxPlotDock::rugWidthChanged(double value) const { |
| 566 | CONDITIONAL_RETURN_NO_LOCK; |
nothing calls this directly
no test coverage detected