#ifndef INTERACTIVECHARTVIEW_H #define INTERACTIVECHARTVIEW_H #include class InteractiveChartView : public QtCharts::QChartView { Q_OBJECT public: using QChartView::QChartView; protected: void wheelEvent(QWheelEvent* event) override; private: qreal factor = 1.0; }; #endif // INTERACTIVECHARTVIEW_H