| 195 | QList<PlotChannel *> PlotWidget::getChannels() { return m_plotChannels; } |
| 196 | |
| 197 | void PlotWidget::addPlotAxisHandle(PlotAxisHandle *ax) { m_plotAxisHandles[ax->axis()->position()].append(ax); } |
| 198 | |
| 199 | void PlotWidget::removePlotAxisHandle(PlotAxisHandle *ax) { m_plotAxisHandles[ax->axis()->position()].removeAll(ax); } |
| 200 |