##// END OF EJS Templates
integrating bar charts to test app.. crashes for now
integrating bar charts to test app.. crashes for now

File last commit:

r161:cc2daab2560d
r164:8e580b305fe6
Show More
percentbarchartseries.h
31 lines | 614 B | text/x-c | CLexer
/ src / barchart / percentbarchartseries.h
sauimone
percent bar chart
r101 #ifndef PERCENTBARCHARTSERIES_H
#define PERCENTBARCHARTSERIES_H
#include <QList>
#include <QAbstractItemModel>
sauimone
refactored barcharts. layout to derived classess other funtionality to base class
r126 #include "barchartseriesbase.h"
sauimone
percent bar chart
r101
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class PercentBarGroup;
sauimone
refactored barcharts. layout to derived classess other funtionality to base class
r126 class QTCOMMERCIALCHART_EXPORT PercentBarChartSeries : public BarChartSeriesBase
sauimone
percent bar chart
r101 {
Q_OBJECT
public:
PercentBarChartSeries(QObject* parent=0);
sauimone
refactored barcharts. layout to derived classess other funtionality to base class
r126 // from BarChartSeriesBase
sauimone
percent bar chart
r101 virtual QChartSeriesType type() const { return QChartSeries::SeriesTypePercentBar; }
public Q_SLOTS:
private:
PercentBarGroup* mPercentBarGroup;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // PERCENTBARCHARTSERIES_H