##// END OF EJS Templates
Default theme with OS specific colors on Windows
Default theme with OS specific colors on Windows

File last commit:

r377:a61a7697be62
r537:f223805ee598
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