Files
tenmon/chartgraph.h
T
2025-04-23 13:37:47 +02:00

24 lines
380 B
C++

#ifndef CHARTGRAPH_H
#define CHARTGRAPH_H
#include <QDialog>
#include <QJSValue>
#include <QChart>
class ChartView;
class ChartGraph : public QDialog
{
Q_OBJECT
QChart *_chart;
ChartView *_chartView;
public:
explicit ChartGraph(QWidget *parent = nullptr);
void plot(const QVariant &graph);
public slots:
void save();
signals:
};
#endif // CHARTGRAPH_H