##// 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
qpercentbarseries.h
21 lines | 443 B | text/x-c | CLexer
#ifndef PERCENTBARSERIES_H
#define PERCENTBARSERIES_H
#include <QStringList>
#include <qbarseries.h>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QTCOMMERCIALCHART_EXPORT QPercentBarSeries : public QBarSeries
{
Q_OBJECT
public:
QPercentBarSeries(QStringList categories, QObject* parent=0);
virtual QSeriesType type() const { return QSeries::SeriesTypePercentBar; }
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // PERCENTBARSERIES_H