##// END OF EJS Templates
Checkbox for anti-alias to chartwidgettest
Checkbox for anti-alias to chartwidgettest

File last commit:

r338:7289fb2b50fb
r379:ef3b0565576e
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