##// 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
sauimone
added missing example files :)
r96 #ifndef STACKEDBARCHARTSERIES_H
#define STACKEDBARCHARTSERIES_H
#include <QList>
#include <QAbstractItemModel>
sauimone
refactored barcharts. layout to derived classess other funtionality to base class
r126 #include "barchartseriesbase.h"
sauimone
added missing example files :)
r96
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class StackedBarGroup;
sauimone
refactored barcharts. layout to derived classess other funtionality to base class
r126 class QTCOMMERCIALCHART_EXPORT StackedBarChartSeries : public BarChartSeriesBase
sauimone
added missing example files :)
r96 {
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