##// END OF EJS Templates
Adds templete to chartviewer to simplyfy chart type creation
Adds templete to chartviewer to simplyfy chart type creation

File last commit:

r1761:34fc5c0da098
r1839:16961447933b
Show More
widget.h
30 lines | 477 B | text/x-c | CLexer
#ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
#include <QPieSeries>
QTCOMMERCIALCHART_USE_NAMESPACE
class Widget : public QWidget
{
Q_OBJECT
public:
Widget(QWidget *parent = 0);
~Widget();
public slots:
void updatedStartAngle();
void updatedAngleSpan();
void updateRotation();
void highlight();
private:
QPieSeries *mainData;
QList<QPieSeries *> detailedData;
int detailIndex;
int sliceIndex;
};
#endif // WIDGET_H