##// END OF EJS Templates
Remove click exploding and hover highlighting from pie series API. User should always implement their own.
Remove click exploding and hover highlighting from pie series API. User should always implement their own.

File last commit:

r381:8ab9ba5c10bd
r436:b334955b5e36
Show More
percentbarpresenter_p.h
29 lines | 562 B | text/x-c | CLexer
/ src / barchart / percentbarpresenter_p.h
sauimone
moved presenter to private headers. code cleanup
r217 #ifndef PERCENTBARPRESENTER_H
#define PERCENTBARPRESENTER_H
sauimone
percent bar chart
r101
Tero Ahola
Refactoring continued: restored ChartItem class
r104 #include "chartitem_p.h"
sauimone
renamed bar.h to bar_p.h
r118 #include "bar_p.h"
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338 #include "qpercentbarseries.h"
sauimone
added _p to private class headers
r381 #include "barpresenterbase_p.h"
Tero Ahola
Refactored themes; now enabled for line, scatter and pies...
r103 #include <QGraphicsItem>
sauimone
percent bar chart
r101
QTCOMMERCIALCHART_BEGIN_NAMESPACE
sauimone
Common naming convention for barcharts
r216 class PercentBarPresenter : public BarPresenterBase
sauimone
percent bar chart
r101 {
sauimone
moved tooltip to presenter
r288 Q_OBJECT
sauimone
percent bar chart
r101 public:
sauimone
Naming convention change for barcharts. QBarChartSeries is now QBarSeries etc.
r338 PercentBarPresenter(QBarSeries *series, QGraphicsItem *parent = 0);
sauimone
percent bar chart
r101
private:
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 // PERCENTBARPRESENTER_H