##// END OF EJS Templates
model prototyping for bar chart
model prototyping for bar chart

File last commit:

r126:2dc5911e790e
r159:e1dfbbf1ecba
Show More
percentbargroup.h
28 lines | 534 B | text/x-c | CLexer
sauimone
percent bar chart
r101 #ifndef PERCENTBARGROUP_H
#define PERCENTBARGROUP_H
Tero Ahola
Refactoring continued: restored ChartItem class
r104 #include "chartitem_p.h"
sauimone
renamed bar.h to bar_p.h
r118 #include "bar_p.h"
sauimone
percent bar chart
r101 #include "percentbarchartseries.h"
sauimone
refactored barcharts. layout to derived classess other funtionality to base class
r126 #include "bargroupbase.h"
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 #include <QGraphicsItem>
sauimone
percent bar chart
r101
QTCOMMERCIALCHART_BEGIN_NAMESPACE
sauimone
refactored barcharts. layout to derived classess other funtionality to base class
r126 class PercentBarGroup : public BarGroupBase
sauimone
percent bar chart
r101 {
public:
PercentBarGroup(PercentBarChartSeries& series, QGraphicsItem *parent = 0);
private:
void layoutChanged(); // layout has changed -> need to recalculate bar sizes
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // PERCENTBARGROUP_H