##// END OF EJS Templates
Merge branch 'master' of https://git.it.local/repos/QtCommercialDevel-13049/charts Conflicts: example/example.pro

File last commit:

r172:aba5dff73719
r207:1bc0eafcd96e merge
Show More
stackedbargroup.h
26 lines | 505 B | text/x-c | CLexer
#ifndef STACKEDBARGROUP_H
#define STACKEDBARGROUP_H
#include "bargroupbase.h"
#include "stackedbarchartseries.h"
#include <QGraphicsItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class StackedBarGroup : public BarGroupBase
{
public:
StackedBarGroup(BarChartModel& model, QGraphicsItem *parent = 0);
private:
// From BarGroupBase
void layoutChanged(); // layout has changed -> need to recalculate bar sizes
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // STACKEDBARGROUP_H