##// END OF EJS Templates
Fix add/remove animation for pie and apply colors from theme when adding/removing
Fix add/remove animation for pie and apply colors from theme when adding/removing

File last commit:

r487:03622a1338c4
r659:7d415c8db783
Show More
stackedbarpresenter_p.h
28 lines | 567 B | text/x-c | CLexer
/ src / barchart / stackedbarpresenter_p.h
#ifndef STACKEDBARPRESENTER_H
#define STACKEDBARPRESENTER_H
#include "barpresenterbase_p.h"
#include "qstackedbarseries.h"
#include <QGraphicsItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class StackedBarPresenter : public BarPresenterBase
{
Q_OBJECT
public:
StackedBarPresenter(QBarSeries *series, QChart *parent = 0);
~StackedBarPresenter();
private:
// From BarPresenterBase
void layoutChanged(); // layout has changed -> need to recalculate bar sizes
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // STACKEDBARPRESENTER_H