##// END OF EJS Templates
updated theme example. minor fix to legend
updated theme example. minor fix to legend

File last commit:

r737:e81beeb51921
r786:3f886841e62a
Show More
qpercentbarseries.h
19 lines | 443 B | text/x-c | CLexer
/ src / barchart / qpercentbarseries.h
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338 #ifndef PERCENTBARSERIES_H
#define PERCENTBARSERIES_H
sauimone
replaced qbarcategory with qstringlist
r377 #include <QStringList>
Jani Honkonen
Change includes in public headers from #include "xxx" -> #include <xxx>
r697 #include <qbarseries.h>
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QTCOMMERCIALCHART_EXPORT QPercentBarSeries : public QBarSeries
{
Q_OBJECT
public:
Tero Ahola
Code review: Fixed simple issues in Bar and Legend
r737 QPercentBarSeries(QStringList categories, QObject *parent = 0);
Michal Klocek
Rename QChartSeries to QSeries
r360 virtual QSeriesType type() const { return QSeries::SeriesTypePercentBar; }
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif // PERCENTBARSERIES_H