| 1025 | } |
| 1026 | |
| 1027 | void CartesianPlotDock::minChanged(const Dimension dim, const int index, double min) { |
| 1028 | DEBUG(Q_FUNC_INFO << ", value = " << min); |
| 1029 | CONDITIONAL_RETURN_NO_LOCK; |
| 1030 | |
| 1031 | // selected x/y range |
| 1032 | DEBUG(Q_FUNC_INFO << ", x range index: " << index) |
| 1033 | for (auto* plot : m_plotList) |
| 1034 | if (!qFuzzyCompare(min, plot->range(dim, index).start())) |
| 1035 | plot->setMin(dim, index, min); |
| 1036 | } |
| 1037 | |
| 1038 | void CartesianPlotDock::maxChanged(const Dimension dim, const int index, double max) { |
| 1039 | DEBUG(Q_FUNC_INFO << ", value = " << max); |