##// END OF EJS Templates
Fixed a bug with last two control points calculation
Fixed a bug with last two control points calculation

File last commit:

r381:8ab9ba5c10bd
r429:cbe57d7d97d6
Show More
percentbarpresenter_p.h
29 lines | 562 B | text/x-c | CLexer
/ src / barchart / percentbarpresenter_p.h
#ifndef PERCENTBARPRESENTER_H
#define PERCENTBARPRESENTER_H
#include "chartitem_p.h"
#include "bar_p.h"
#include "qpercentbarseries.h"
#include "barpresenterbase_p.h"
#include <QGraphicsItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class PercentBarPresenter : public BarPresenterBase
{
Q_OBJECT
public:
PercentBarPresenter(QBarSeries *series, QGraphicsItem *parent = 0);
private:
void layoutChanged(); // layout has changed -> need to recalculate bar sizes
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // PERCENTBARPRESENTER_H