##// END OF EJS Templates
minor fix
minor fix

File last commit:

r217:97e8d42197e7
r240:bc4567a3ca33
Show More
barpresenter.h
28 lines | 535 B | text/x-c | CLexer
#ifndef BARPRESENTER_H
#define BARPRESENTER_H
#include "barpresenterbase.h"
#include "qbarchartseries.h"
#include <QGraphicsItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
// Base class for bar groups
class BarPresenter : public BarPresenterBase
{
public:
explicit BarPresenter(BarChartModel& model, QGraphicsItem *parent = 0);
private:
// From BarPresenterBase
void layoutChanged(); // layout has changed -> need to recalculate bar sizes
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // BARPRESENTER_H