##// END OF EJS Templates
Add ownerships takeover to chartaxis
Add ownerships takeover to chartaxis

File last commit:

r216:abacdc3682d1
r248:ded845353666
Show More
stackedbarpresenter.h
26 lines | 522 B | text/x-c | CLexer
/ src / barchart / stackedbarpresenter.h
sauimone
added missing example files :)
r96 #ifndef STACKEDBARGROUP_H
#define STACKEDBARGROUP_H
sauimone
Common naming convention for barcharts
r216 #include "barpresenterbase.h"
#include "qstackedbarchartseries.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
Common naming convention for barcharts
r216 class StackedBarPresenter : public BarPresenterBase
sauimone
added missing example files :)
r96 {
public:
sauimone
Common naming convention for barcharts
r216 StackedBarPresenter(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