##// END OF EJS Templates
Improves spline interpolation...
Improves spline interpolation * fixes spline animation issues * adds splieanimation class * fixes ekg example to remove not used data

File last commit:

r487:03622a1338c4
r622:960bcf5125b7
Show More
stackedbarpresenter_p.h
28 lines | 567 B | text/x-c | CLexer
/ src / barchart / stackedbarpresenter_p.h
#ifndef STACKEDBARPRESENTER_H
#define STACKEDBARPRESENTER_H
#include "barpresenterbase_p.h"
#include "qstackedbarseries.h"
#include <QGraphicsItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class StackedBarPresenter : public BarPresenterBase
{
Q_OBJECT
public:
StackedBarPresenter(QBarSeries *series, QChart *parent = 0);
~StackedBarPresenter();
private:
// From BarPresenterBase
void layoutChanged(); // layout has changed -> need to recalculate bar sizes
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // STACKEDBARPRESENTER_H