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