| 292 | } |
| 293 | |
| 294 | PlotWidgetBase::CurveInfo* PlotWidgetBase::curveFromTitle(const QString& title) { |
| 295 | for (auto& info : plot_->curve_list) { |
| 296 | if (info.curve->title().text() == title || info.source_name == title) { |
| 297 | return &info; |
| 298 | } |
| 299 | } |
| 300 | return nullptr; |
| 301 | } |
| 302 | |
| 303 | void PlotWidgetBase::resetZoom() { |
| 304 | updateMaximumZoomArea(); |