##// END OF EJS Templates
Make pie work better with chartwidgettest
Make pie work better with chartwidgettest

File last commit:

r161:cc2daab2560d
r163:daab1c215b03
Show More
barchartseries.h
29 lines | 557 B | text/x-c | CLexer
#ifndef BARCHARTSERIES_H
#define BARCHARTSERIES_H
#include <QList>
#include <QAbstractItemModel>
#include "barchartseriesbase.h"
class BarGroup;
QTCOMMERCIALCHART_BEGIN_NAMESPACE
// Container for series
class QTCOMMERCIALCHART_EXPORT BarChartSeries : public BarChartSeriesBase
{
Q_OBJECT
public:
BarChartSeries(QObject* parent=0);
// from BarChartSeriesBase
virtual QChartSeriesType type() const { return QChartSeries::SeriesTypeBar; }
private:
BarGroup* mBarGroup;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // BARCHARTSERIES_H