| 144 | } |
| 145 | |
| 146 | void PlotWidget::plotChannelChangeYAxis(PlotChannel *c, PlotAxis *y) |
| 147 | { |
| 148 | m_navigator->removeChannel(c); |
| 149 | m_tracker->removeChannel(c); |
| 150 | c->yAxis()->setVisible(false); |
| 151 | c->setYAxis(y); |
| 152 | m_navigator->addChannel(c); |
| 153 | m_tracker->addChannel(c); |
| 154 | showAxisLabels(); |
| 155 | |
| 156 | Q_EMIT channelSelected(c); |
| 157 | } |
| 158 | |
| 159 | void PlotWidget::addPlotChannel(PlotChannel *ch) |
| 160 | { |
no test coverage detected