##// END OF EJS Templates
compile fix. Removed captain obvious documentation from barseries
compile fix. Removed captain obvious documentation from barseries

File last commit:

r338:7289fb2b50fb
r359:3948345f91da
Show More
qstackedbarseries.h
21 lines | 450 B | text/x-c | CLexer
#ifndef STACKEDBARSERIES_H
#define STACKEDBARSERIES_H
#include "qbarseries.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QBarCategory;
class QTCOMMERCIALCHART_EXPORT QStackedBarSeries : public QBarSeries
{
Q_OBJECT
public:
QStackedBarSeries(QBarCategory *category, QObject* parent=0);
virtual QChartSeriesType type() const { return QChartSeries::SeriesTypeStackedBar; }
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // STACKEDBARSERIES_H