##// END OF EJS Templates
Revert "Fixes line uder grid issue"...
Revert "Fixes line uder grid issue" This reverts commit 3ea3ba4a33950ea7420e16913d228ed53fe566c3.

File last commit:

r172:aba5dff73719
r191:0b54368f72bb
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