##// 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
splinewidget.h
25 lines | 386 B | text/x-c | CLexer
#ifndef SPLINEWIDGET_H
#define SPLINEWIDGET_H
#include <QtGui/QWidget>
#include "qsplineseries.h"
QTCOMMERCIALCHART_USE_NAMESPACE
class SplineWidget : public QWidget
{
Q_OBJECT
public:
SplineWidget(QWidget *parent = 0);
~SplineWidget();
public slots:
void addNewPoint();
void removePoint();
private:
QSplineSeries* series;
};
#endif // SPLINEWIDGET_H