##// END OF EJS Templates
Fixed regression in declarative impl
Fixed regression in declarative impl

File last commit:

r161:cc2daab2560d
r168:23b5a494bf5a
Show More
stackedbarchartseries.h
30 lines | 607 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(QObject* parent=0);
// from QChartSeries
virtual QChartSeriesType type() const { return QChartSeries::SeriesTypeStackedBar; }
public Q_SLOTS:
private:
StackedBarGroup* mStackedBarGroup;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // STACKEDBARCHARTSERIES_H