##// END OF EJS Templates
Drafting scatter type plotting...
Drafting scatter type plotting Note that the draft implementation is now a part of the test widget. It has to be integrated to the actual API next.

File last commit:

r8:ca68423caa77
r8:ca68423caa77
Show More
qchartwidget.h
28 lines | 490 B | text/x-c | CLexer
#ifndef QCHARTWIDGET_H
#define QCHARTWIDGET_H
#include <QWidget>
class QGraphicsView;
class QGraphicsScene;
class QScatterSeries;
class QChartWidget : public QWidget
{
Q_OBJECT
public:
explicit QChartWidget(QWidget *parent = 0);
~QChartWidget();
void setType(/*TODO QChart::Type*/ int type);
signals:
public slots:
private:
QGraphicsView *m_view;
QGraphicsScene *m_scene;
QScatterSeries *m_scatter;
};
#endif // QCHARTWIDGET_H