##// END OF EJS Templates
Fixed regression in declarative impl
Fixed regression in declarative impl

File last commit:

r126:2dc5911e790e
r168:23b5a494bf5a
Show More
bargroup.h
28 lines | 507 B | text/x-c | CLexer
#ifndef QBARGROUP_H
#define QBARGROUP_H
#include "bargroupbase.h"
#include "barchartseries.h"
#include <QGraphicsItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
// Base class for bar groups
class BarGroup : public BarGroupBase
{
public:
explicit BarGroup(BarChartSeries& series, QGraphicsItem *parent = 0);
private:
// From BarGroupBase
void layoutChanged(); // layout has changed -> need to recalculate bar sizes
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // QBARGROUP_H