##// END OF EJS Templates
Fix zorder of axis, and ticks
Fix zorder of axis, and ticks

File last commit:

r256:bd68fc4fe7ab
r272:1946c776c83b
Show More
barpresenter.h
27 lines | 581 B | text/x-c | CLexer
sauimone
moved presenter to private headers. code cleanup
r217 #ifndef BARPRESENTER_H
#define BARPRESENTER_H
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56
sauimone
Common naming convention for barcharts
r216 #include "barpresenterbase.h"
#include "qbarchartseries.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
Bug fix for bar presenters. It appears that order of childItems may change. Relying on order caused crash
r256 // Presenter for parallel bars. Grouping of bars is done on category basis.
sauimone
Common naming convention for barcharts
r216 class BarPresenter : public BarPresenterBase
sauimone
Integrating bar chart. Cleaned up old implementation. TODO: show this in test application. how?
r56 {
public:
sauimone
Common naming convention for barcharts
r216 explicit BarPresenter(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
moved presenter to private headers. code cleanup
r217 // From BarPresenterBase
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
moved presenter to private headers. code cleanup
r217 #endif // BARPRESENTER_H