##// END OF EJS Templates
added labels to series, intergrated with test app. minor hack to test app
added labels to series, intergrated with test app. minor hack to test app

File last commit:

r161:cc2daab2560d
r167:023d2c8150a8
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