##// END OF EJS Templates
updated barchart examples
updated barchart examples

File last commit:

r169:1723c50daa1e
r170:ff886517a70e
Show More
stackedbarchartseries.h
30 lines | 631 B | text/x-c | CLexer
/ src / barchart / stackedbarchartseries.h
#ifndef STACKEDBARCHARTSERIES_H
#define STACKEDBARCHARTSERIES_H
#include <QList>
#include <QAbstractItemModel>
#include "barchartseriesbase.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class StackedBarGroup;
class QTCOMMERCIALCHART_EXPORT StackedBarChartSeries : public BarChartSeriesBase
{
Q_OBJECT
public:
StackedBarChartSeries(QBarCategory &category, QObject* parent=0);
// from QChartSeries
virtual QChartSeriesType type() const { return QChartSeries::SeriesTypeStackedBar; }
public Q_SLOTS:
private:
StackedBarGroup* mStackedBarGroup;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // STACKEDBARCHARTSERIES_H