##// 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
Marek Rosa
Spline working somewhat
r401 #ifndef SPLINEWIDGET_H
#define SPLINEWIDGET_H
#include <QtGui/QWidget>
Marek Rosa
Added automatic refresh of control points on add/remove point. Spline example updated
r431 #include "qsplineseries.h"
QTCOMMERCIALCHART_USE_NAMESPACE
Marek Rosa
Spline working somewhat
r401
class SplineWidget : public QWidget
{
Q_OBJECT
public:
SplineWidget(QWidget *parent = 0);
~SplineWidget();
Marek Rosa
Added automatic refresh of control points on add/remove point. Spline example updated
r431
public slots:
void addNewPoint();
void removePoint();
private:
QSplineSeries* series;
Marek Rosa
Spline working somewhat
r401 };
#endif // SPLINEWIDGET_H