plot range
| 1758 | |
| 1759 | // plot range |
| 1760 | void CartesianPlotDock::defaultPlotRangeChanged() { |
| 1761 | const int index{m_bgDefaultPlotRange->checkedId()}; |
| 1762 | DEBUG(Q_FUNC_INFO << ", index = " << index) |
| 1763 | m_plot->setDefaultCoordinateSystemIndex(index); |
| 1764 | updatePlotRangeList(); // changing default cSystem may change x/y-ranges when on auto scale |
| 1765 | m_plot->retransform(); // update plot |
| 1766 | } |
| 1767 | |
| 1768 | // range breaks |
| 1769 | void CartesianPlotDock::plotXRangeBreakingEnabledChanged(bool on) { |
nothing calls this directly
no test coverage detected