##// END OF EJS Templates
Merge branch 'master' of https://git.it.local/repos/QtCommercialDevel-13049/charts Conflicts: example/example.pro

File last commit:

r183:45734e367adb
r207:1bc0eafcd96e merge
Show More
qbarset.h
32 lines | 690 B | text/x-c | CLexer
sauimone
proof of concept implementation for barset and barcategory
r169 #ifndef QBARSET_H
#define QBARSET_H
#include "qchartglobal.h"
sauimone
brush support for bargroups
r183 #include <QPen>
#include <QBrush>
sauimone
proof of concept implementation for barset and barcategory
r169
QTCOMMERCIALCHART_BEGIN_NAMESPACE
sauimone
fixed bug in category implementation. model now owns the category and sets
r173 class QTCOMMERCIALCHART_EXPORT QBarSet // TODO? : public QObject
sauimone
proof of concept implementation for barset and barcategory
r169 {
sauimone
fixed bug in category implementation. model now owns the category and sets
r173 //Q_OBJECT;
sauimone
proof of concept implementation for barset and barcategory
r169 public:
QBarSet();
void setName(QString name);
sauimone
Barset and barcategory implememtation. Updated test application
r171 QString name();
sauimone
brush support for bargroups
r183 QBarSet& operator << (const qreal &value); // appends new value to set
sauimone
proof of concept implementation for barset and barcategory
r169
sauimone
brush support for bargroups
r183 int count(); // count of values in set
qreal valueAt(int index); // for modifying individual values
void setValue(int index, qreal value); //
sauimone
Barset and barcategory implememtation. Updated test application
r171
private:
sauimone
proof of concept implementation for barset and barcategory
r169
QString mName;
QList<qreal> mValues;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QBARSET_H