##// END OF EJS Templates
First version of legend. Simple markers and serie names. Using drilldown as example for now.
First version of legend. Simple markers and serie names. Using drilldown as example for now.

File last commit:

r486:7ab45bf9f776
r529:73dc1554f5c7
Show More
chartwidget.h
28 lines | 519 B | text/x-c | CLexer
Michal Klocek
Add zoom support...
r67 #ifndef CHARTWIDGET_H
#define CHARTWIDGET_H
#include <qchartview.h>
#include <QRubberBand>
QTCOMMERCIALCHART_USE_NAMESPACE
class ChartWidget : public QChartView
{
Q_OBJECT
public:
ChartWidget(QWidget *parent = 0);
protected:
void mousePressEvent(QMouseEvent *event);
void mouseMoveEvent(QMouseEvent *event);
void mouseReleaseEvent(QMouseEvent *event);
void keyPressEvent(QKeyEvent *event);
private:
bool rubberBandIsShown;
QRubberBand m_rubberBand;
QPoint m_origin;
};
#endif