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

File last commit:

r666:6018938e3db4
r674:2c12358822ee
Show More
percentbarchartitem_p.h
28 lines | 491 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:
PercentBarChartItem(QBarSeries *series, QChart *parent = 0);
private:
void layoutChanged(); // layout has changed -> need to recalculate bar sizes
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // PERCENTBARCHARTITEM_H