##// 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
#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
virtual QVector<QRectF> calculateLayout();
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // STACKEDBARCHARTITEM_H