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

File last commit:

r172:aba5dff73719
r207:1bc0eafcd96e merge
Show More
bargroup.h
28 lines | 505 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
removed barchartseriesbase. functionality is now in model
r172 explicit BarGroup(BarChartModel& model, QGraphicsItem *parent = 0);
sauimone
Added bar chart example
r78
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