##// END OF EJS Templates
Bar chart prototyping
Bar chart prototyping

File last commit:

r10:2932e9eb12b3
r10:2932e9eb12b3
Show More
qbarchartxaxis.h
22 lines | 406 B | text/x-c | CLexer
#ifndef QBARCHARTXAXIS_H
#define QBARCHARTXAXIS_H
#include <QGraphicsItem>
class QBarChartXAxis : public QGraphicsItem
{
public:
QBarChartXAxis(QGraphicsItem *parent = 0);
// From QGraphicsItem
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
QRectF boundingRect() const;
private:
int mWidth;
int mHeight;
};
#endif // QBARCHARTXAXIS_H