##// END OF EJS Templates
barchart animation fix
barchart animation fix

File last commit:

r679:2f2494d0880e
r693:1d2255713343
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