##// END OF EJS Templates
updated documentation and examples for barcharts
updated documentation and examples for barcharts

File last commit:

r288:5f68000bea7a
r325:043a715b3681
Show More
percentbarpresenter.h
29 lines | 570 B | text/x-c | CLexer
/ src / barchart / percentbarpresenter.h
#ifndef PERCENTBARPRESENTER_H
#define PERCENTBARPRESENTER_H
#include "chartitem_p.h"
#include "bar_p.h"
#include "qpercentbarchartseries.h"
#include "barpresenterbase.h"
#include <QGraphicsItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class PercentBarPresenter : public BarPresenterBase
{
Q_OBJECT
public:
PercentBarPresenter(QBarChartSeries *series, QGraphicsItem *parent = 0);
private:
void layoutChanged(); // layout has changed -> need to recalculate bar sizes
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // PERCENTBARPRESENTER_H