##// END OF EJS Templates
Fixes line uder grid issue
Fixes line uder grid issue

File last commit:

r172:aba5dff73719
r190:3ea3ba4a3395
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