##// END OF EJS Templates
Fix attempt to wrong graphics items hadnling
Fix attempt to wrong graphics items hadnling

File last commit:

r737:e81beeb51921
r790:68c6a254cbfa
Show More
qpercentbarseries.h
19 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