| 133 | } |
| 134 | |
| 135 | void PlotWidget::plotChannelChangeXAxis(PlotChannel *c, PlotAxis *x) |
| 136 | { |
| 137 | m_navigator->removeChannel(c); |
| 138 | m_tracker->removeChannel(c); |
| 139 | c->xAxis()->setVisible(false); |
| 140 | c->setXAxis(x); |
| 141 | m_navigator->addChannel(c); |
| 142 | m_tracker->addChannel(c); |
| 143 | showAxisLabels(); |
| 144 | } |
| 145 | |
| 146 | void PlotWidget::plotChannelChangeYAxis(PlotChannel *c, PlotAxis *y) |
| 147 | { |
nothing calls this directly
no test coverage detected