##// END OF EJS Templates
Revert "Fixes line uder grid issue"...
Revert "Fixes line uder grid issue" This reverts commit 3ea3ba4a33950ea7420e16913d228ed53fe566c3.

File last commit:

r172:aba5dff73719
r191:0b54368f72bb
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