##// END OF EJS Templates
layout fix to legend. Documented legend functions.
layout fix to legend. Documented legend functions.

File last commit:

r697:fbb57e02c5e2
r724:2a4cd4554920
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