| 418 | } |
| 419 | |
| 420 | void BarPlotDock::widthFactorChanged(int value) { |
| 421 | CONDITIONAL_LOCK_RETURN; |
| 422 | |
| 423 | double factor = (double)value / 100.; |
| 424 | for (auto* barPlot : m_barPlots) |
| 425 | barPlot->setWidthFactor(factor); |
| 426 | } |
| 427 | |
| 428 | //"Error Bars"-tab |
| 429 | /*! |
nothing calls this directly
no test coverage detected