Added first project implementation

This commit is contained in:
Yury Shuvakin
2024-01-22 18:45:09 +09:00
parent 065decd584
commit 9e957f29fe
12 changed files with 893 additions and 0 deletions

19
InteractiveChartView.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef INTERACTIVECHARTVIEW_H
#define INTERACTIVECHARTVIEW_H
#include <QChartView>
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