| 1058 | } |
| 1059 | |
| 1060 | void CartesianPlotDock::maxDateTimeChanged(const QObject* sender, const Dimension dim, qint64 value) { |
| 1061 | CONDITIONAL_LOCK_RETURN; |
| 1062 | |
| 1063 | // selected x range |
| 1064 | const int index{sender->property("row").toInt()}; |
| 1065 | DEBUG(Q_FUNC_INFO << ", x range index: " << index) |
| 1066 | for (auto* plot : m_plotList) |
| 1067 | plot->setMax(dim, index, value); |
| 1068 | updatePlotRangeList(); |
| 1069 | } |
| 1070 | |
| 1071 | /*! |
| 1072 | * called on scale changes (linear, log) for the x-/y-axis |
no test coverage detected