##// END OF EJS Templates
Fixed regression in declarative impl
Fixed regression in declarative impl

File last commit:

r126:2dc5911e790e
r168:23b5a494bf5a
Show More
bargroup.h
28 lines | 507 B | text/x-c | CLexer
sauimone
added stacked bar chart
r94 #ifndef QBARGROUP_H
#define QBARGROUP_H
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56
sauimone
refactored barcharts. layout to derived classess other funtionality to base class
r126 #include "bargroupbase.h"
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 #include "barchartseries.h"
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 #include <QGraphicsItem>
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56
QTCOMMERCIALCHART_BEGIN_NAMESPACE
sauimone
refactored barcharts. layout to derived classess other funtionality to base class
r126 // Base class for bar groups
class BarGroup : public BarGroupBase
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 {
public:
sauimone
Added bar chart example
r78 explicit BarGroup(BarChartSeries& series, QGraphicsItem *parent = 0);
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 private:
sauimone
refactored barcharts. layout to derived classess other funtionality to base class
r126 // From BarGroupBase
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 void layoutChanged(); // layout has changed -> need to recalculate bar sizes
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
sauimone
added stacked bar chart
r94 #endif // QBARGROUP_H