##// END OF EJS Templates
Bugfix dangling pointer in qlegend, remove debug info
Bugfix dangling pointer in qlegend, remove debug info

File last commit:

r571:0bb609016fcc
r572:1af1de97a8a5
Show More
chartview.h
29 lines | 476 B | text/x-c | CLexer
Michal Klocek
Adds preseterchart example
r246 #ifndef CHARTVIEW_H_
#define CHARTVIEW_H_
#include <qchartview.h>
#include <QTimer>
QTCOMMERCIALCHART_USE_NAMESPACE
Michal Klocek
Adds chartPresenter example to docs
r482 //![1]
Michal Klocek
Adds preseterchart example
r246 class ChartView: public QChartView
{
Q_OBJECT
public:
ChartView(QWidget* parent=0);
virtual ~ChartView();
public slots:
void handleTimeout();
Michal Klocek
Refactors click signal to line,area,spline,scatter charts
r571 void handlePointClicked(const QPointF& point);
Michal Klocek
Adds preseterchart example
r246
private:
QTimer m_timer;
Michal Klocek
Rename QChartSeries to QSeries
r360 QList<QSeries*> m_series;
Michal Klocek
Refactor animation to fit line,spline,scatter...
r476 QStringList m_titles;
Michal Klocek
Adds preseterchart example
r246 int m_index;
};
Michal Klocek
Adds chartPresenter example to docs
r482 //![1]
Michal Klocek
Adds preseterchart example
r246
#endif /* CHARTVIEW_H_ */