##// END OF EJS Templates
QChart and QChartView now has some description for all the functions
QChart and QChartView now has some description for all the functions

File last commit:

r246:b65459a7fb5b
r287:6e151fb989cd
Show More
chartview.h
25 lines | 390 B | text/x-c | CLexer
#ifndef CHARTVIEW_H_
#define CHARTVIEW_H_
#include <qchartview.h>
#include <QTimer>
QTCOMMERCIALCHART_USE_NAMESPACE
class ChartView: public QChartView
{
Q_OBJECT
public:
ChartView(QWidget* parent=0);
virtual ~ChartView();
public slots:
void handleTimeout();
private:
QTimer m_timer;
QList<QChartSeries*> m_series;
int m_index;
};
#endif /* CHARTVIEW_H_ */