##// END OF EJS Templates
removed some of the todo comments
removed some of the todo comments

File last commit:

r1875:431c64e8346f
r1896:232ea264e05e
Show More
donutbreakdownchart.h
23 lines | 492 B | text/x-c | CLexer
Jani Honkonen
Refactored donutbreakdown example
r1875 #ifndef DONUTBREAKDOWNCHART_H
#define DONUTBREAKDOWNCHART_H
#include <QChart>
#include <QPieSeries>
QTCOMMERCIALCHART_USE_NAMESPACE
class DonutBreakdownChart : public QChart
{
public:
DonutBreakdownChart(QGraphicsItem *parent = 0, Qt::WindowFlags wFlags = 0);
void addBreakdownSeries(QPieSeries *series, QColor color);
private:
void recalculateAngles();
QPieSeries *find(QString seriesName) const;
private:
QPieSeries *mainSeries;
};
#endif // DONUTBREAKDOWNCHART_H