##// END OF EJS Templates
Update pie image
Update pie image

File last commit:

r338:7289fb2b50fb
r356:6b8cfbb7e275
Show More
stackedbarpresenter.h
27 lines | 544 B | text/x-c | CLexer
/ src / barchart / stackedbarpresenter.h
#ifndef STACKEDBARPRESENTER_H
#define STACKEDBARPRESENTER_H
#include "barpresenterbase.h"
#include "qstackedbarseries.h"
#include <QGraphicsItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class StackedBarPresenter : public BarPresenterBase
{
Q_OBJECT
public:
StackedBarPresenter(QBarSeries *series, QGraphicsItem *parent = 0);
private:
// From BarPresenterBase
void layoutChanged(); // layout has changed -> need to recalculate bar sizes
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // STACKEDBARPRESENTER_H