##// END OF EJS Templates
legend documentation fix. detaching and attaching the legend
legend documentation fix. detaching and attaching the legend

File last commit:

r697:fbb57e02c5e2
r728:7d3fdc2fff63
Show More
qstackedbarseries.h
20 lines | 442 B | text/x-c | CLexer
#ifndef STACKEDBARSERIES_H
#define STACKEDBARSERIES_H
#include <QStringList>
#include <qbarseries.h>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QTCOMMERCIALCHART_EXPORT QStackedBarSeries : public QBarSeries
{
Q_OBJECT
public:
QStackedBarSeries(QStringList categories, QObject* parent=0);
virtual QSeriesType type() const { return QSeries::SeriesTypeStackedBar; }
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // STACKEDBARSERIES_H