##// END OF EJS Templates
Add animations to pie. Works but has some visual issues when adding slices.
Add animations to pie. Works but has some visual issues when adding slices.

File last commit:

r486:7ab45bf9f776
r618:249071e508d1
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