##// END OF EJS Templates
added labels to series, intergrated with test app. minor hack to test app
added labels to series, intergrated with test app. minor hack to test app

File last commit:

r126:2dc5911e790e
r167:023d2c8150a8
Show More
percentbargroup.h
28 lines | 534 B | text/x-c | CLexer
#ifndef PERCENTBARGROUP_H
#define PERCENTBARGROUP_H
#include "chartitem_p.h"
#include "bar_p.h"
#include "percentbarchartseries.h"
#include "bargroupbase.h"
#include <QGraphicsItem>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class PercentBarGroup : public BarGroupBase
{
public:
PercentBarGroup(PercentBarChartSeries& series, QGraphicsItem *parent = 0);
private:
void layoutChanged(); // layout has changed -> need to recalculate bar sizes
private:
// Data
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // PERCENTBARGROUP_H