##// END OF EJS Templates
PieSliceItem bounding rect fix
PieSliceItem bounding rect fix

File last commit:

r694:08035ff71c15
r718:7a2556deb83d
Show More
percentbarchartitem_p.h
27 lines | 461 B | text/x-c | CLexer
/ src / barchart / percentbarchartitem_p.h
sauimone
combined barpresenterbase and barpresenter. renamed barchartpresenters to barchartitems
r666 #ifndef PERCENTBARCHARTITEM_H
#define PERCENTBARCHARTITEM_H
#include "barchartitem_p.h"
#include <QGraphicsItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QBarSeries;
class PercentBarChartItem : public BarChartItem
{
Q_OBJECT
public:
Michal Klocek
Refactors barchart axis hadnling...
r679 PercentBarChartItem(QBarSeries *series, ChartPresenter *presenter);
sauimone
combined barpresenterbase and barpresenter. renamed barchartpresenters to barchartitems
r666
private:
sauimone
animations to stacked and percent barchart
r694 virtual QVector<QRectF> calculateLayout();
sauimone
combined barpresenterbase and barpresenter. renamed barchartpresenters to barchartitems
r666
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // PERCENTBARCHARTITEM_H