##// END OF EJS Templates
Legend can handle removing of series
Legend can handle removing of series

File last commit:

r486:7ab45bf9f776
r576:47e29632d9f9
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