##// END OF EJS Templates
Set the first pie slice exploded and label visible in chartthemes demo
Set the first pie slice exploded and label visible in chartthemes demo

File last commit:

r694:08035ff71c15
r699:367aeb7897cf
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