| 67 | } |
| 68 | |
| 69 | void PlotComponent::showPlotLabels(bool b) |
| 70 | { |
| 71 | for(auto plot : qAsConst(m_plots)) { |
| 72 | plot->setShowXAxisLabels(b); |
| 73 | plot->setShowYAxisLabels(b); |
| 74 | plot->showAxisLabels(); |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | void PlotComponent::setName(QString s) |
| 79 | { |
nothing calls this directly
no test coverage detected