##// END OF EJS Templates
Added support for adding and removing data with model. Updated the example
Added support for adding and removing data with model. Updated the example

File last commit:

r377:a61a7697be62
r545:366c5163e81a
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