##// END OF EJS Templates
Adds axis scoped pointers (to be checked on windows)
Adds axis scoped pointers (to be checked on windows)

File last commit:

r694:08035ff71c15
r788:bfedfc6138fd
Show More
stackedbarchartitem_p.h
28 lines | 526 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
sauimone
animations to stacked and percent barchart
r694 virtual QVector<QRectF> calculateLayout();
sauimone
combined barpresenterbase and barpresenter. renamed barchartpresenters to barchartitems
r666
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // STACKEDBARCHARTITEM_H