| 304 | } |
| 305 | |
| 306 | void BarPlotDock::removeXColumn() { |
| 307 | cbXColumn->setAspect(nullptr); |
| 308 | ui.bRemoveXColumn->setEnabled(false); |
| 309 | for (auto* barPlot : m_barPlots) |
| 310 | barPlot->setXColumn(nullptr); |
| 311 | } |
| 312 | |
| 313 | void BarPlotDock::addDataColumn() { |
| 314 | auto* cb = new TreeViewComboBox(this); |
nothing calls this directly
no test coverage detected