##// END OF EJS Templates
Adds default gemoetry change call in case of new series
Adds default gemoetry change call in case of new series

File last commit:

r126:2dc5911e790e
r148:38a3d03baaf6
Show More
percentbarchartseries.h
32 lines | 646 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:
QAbstractItemModel* mModel;
PercentBarGroup* mPercentBarGroup;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // PERCENTBARCHARTSERIES_H