##// END OF EJS Templates
Fix worng slot signature in axis initilization
Fix worng slot signature in axis initilization

File last commit:

r679:2f2494d0880e
r688:4ee85b7c4526
Show More
percentbarchartitem_p.h
28 lines | 498 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:
void layoutChanged(); // layout has changed -> need to recalculate bar sizes
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // PERCENTBARCHARTITEM_H