##// END OF EJS Templates
Merge branch 'master' of https://git.it.local/repos/QtCommercialDevel-13049/charts Conflicts: example/example.pro

File last commit:

r172:aba5dff73719
r207:1bc0eafcd96e merge
Show More
stackedbargroup.h
26 lines | 505 B | text/x-c | CLexer
sauimone
added missing example files :)
r96 #ifndef STACKEDBARGROUP_H
#define STACKEDBARGROUP_H
sauimone
refactored barcharts. layout to derived classess other funtionality to base class
r126 #include "bargroupbase.h"
sauimone
added missing example files :)
r96 #include "stackedbarchartseries.h"
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 #include <QGraphicsItem>
sauimone
added missing example files :)
r96
QTCOMMERCIALCHART_BEGIN_NAMESPACE
sauimone
refactored barcharts. layout to derived classess other funtionality to base class
r126 class StackedBarGroup : public BarGroupBase
sauimone
added missing example files :)
r96 {
public:
sauimone
removed barchartseriesbase. functionality is now in model
r172 StackedBarGroup(BarChartModel& model, QGraphicsItem *parent = 0);
sauimone
added missing example files :)
r96
private:
sauimone
refactored barcharts. layout to derived classess other funtionality to base class
r126 // From BarGroupBase
sauimone
added missing example files :)
r96 void layoutChanged(); // layout has changed -> need to recalculate bar sizes
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // STACKEDBARGROUP_H