##// END OF EJS Templates
Adds owvership to domain
Adds owvership to domain

File last commit:

r694:08035ff71c15
r787:e08865d3185f
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