##// END OF EJS Templates
layout fix to legend. Documented legend functions.
layout fix to legend. Documented legend functions.

File last commit:

r694:08035ff71c15
r724:2a4cd4554920
Show More
percentbarchartitem_p.h
27 lines | 461 B | text/x-c | CLexer
/ src / barchart / percentbarchartitem_p.h
#ifndef PERCENTBARCHARTITEM_H
#define PERCENTBARCHARTITEM_H
#include "barchartitem_p.h"
#include <QGraphicsItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class QBarSeries;
class PercentBarChartItem : public BarChartItem
{
Q_OBJECT
public:
PercentBarChartItem(QBarSeries *series, ChartPresenter *presenter);
private:
virtual QVector<QRectF> calculateLayout();
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // PERCENTBARCHARTITEM_H