##// 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
sauimone
combined barpresenterbase and barpresenter. renamed barchartpresenters to barchartitems
r666 #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:
Michal Klocek
Refactors barchart axis hadnling...
r679 StackedBarChartItem(QBarSeries *series, ChartPresenter *presenter);
sauimone
combined barpresenterbase and barpresenter. renamed barchartpresenters to barchartitems
r666 ~StackedBarChartItem();
private:
// From BarChartItem
void layoutChanged(); // layout has changed -> need to recalculate bar sizes
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // STACKEDBARCHARTITEM_H