##// END OF EJS Templates
added labels to series, intergrated with test app. minor hack to test app
added labels to series, intergrated with test app. minor hack to test app

File last commit:

r161:cc2daab2560d
r167:023d2c8150a8
Show More
percentbarchartseries.h
31 lines | 614 B | text/x-c | CLexer
/ src / barchart / percentbarchartseries.h
#ifndef PERCENTBARCHARTSERIES_H
#define PERCENTBARCHARTSERIES_H
#include <QList>
#include <QAbstractItemModel>
#include "barchartseriesbase.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class PercentBarGroup;
class QTCOMMERCIALCHART_EXPORT PercentBarChartSeries : public BarChartSeriesBase
{
Q_OBJECT
public:
PercentBarChartSeries(QObject* parent=0);
// from BarChartSeriesBase
virtual QChartSeriesType type() const { return QChartSeries::SeriesTypePercentBar; }
public Q_SLOTS:
private:
PercentBarGroup* mPercentBarGroup;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // PERCENTBARCHARTSERIES_H