##// 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
#ifndef STACKEDBARGROUP_H
#define STACKEDBARGROUP_H
#include "barpresenterbase.h"
#include "qstackedbarchartseries.h"
#include <QGraphicsItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class StackedBarPresenter : public BarPresenterBase
{
public:
StackedBarPresenter(BarChartModel& model, QGraphicsItem *parent = 0);
private:
// From BarGroupBase
void layoutChanged(); // layout has changed -> need to recalculate bar sizes
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // STACKEDBARGROUP_H