##// END OF EJS Templates
barchart animation fix
barchart animation fix

File last commit:

r679:2f2494d0880e
r693:1d2255713343
Show More
stackedbarchartitem_p.h
28 lines | 562 B | text/x-c | CLexer
/ src / barchart / stackedbarchartitem_p.h
#ifndef STACKEDBARCHARTITEM_H
#define STACKEDBARCHARTITEM_H
#include "barchartitem_p.h"
#include "qstackedbarseries.h"
#include <QGraphicsItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class StackedBarChartItem : public BarChartItem
{
Q_OBJECT
public:
StackedBarChartItem(QBarSeries *series, ChartPresenter *presenter);
~StackedBarChartItem();
private:
// From BarChartItem
void layoutChanged(); // layout has changed -> need to recalculate bar sizes
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // STACKEDBARCHARTITEM_H