##// END OF EJS Templates
Removed unused DeclarativeSeries class
Removed unused DeclarativeSeries class

File last commit:

r282:2a015f15bbd4
r311:e1f0c8c24a70
Show More
qstackedbarchartseries.h
21 lines | 485 B | text/x-c | CLexer
/ src / barchart / qstackedbarchartseries.h
#ifndef STACKEDBARCHARTSERIES_H
#define STACKEDBARCHARTSERIES_H
#include "qbarchartseries.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QBarCategory;
class QTCOMMERCIALCHART_EXPORT QStackedBarChartSeries : public QBarChartSeries
{
Q_OBJECT
public:
QStackedBarChartSeries(QBarCategory *category, QObject* parent=0);
virtual QChartSeriesType type() const { return QChartSeries::SeriesTypeStackedBar; }
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // STACKEDBARCHARTSERIES_H