##// END OF EJS Templates
Remove click exploding and hover highlighting from pie series API. User should always implement their own.
Remove click exploding and hover highlighting from pie series API. User should always implement their own.

File last commit:

r425:85842e6c8dba
r436:b334955b5e36
Show More
barvalue_p.h
50 lines | 955 B | text/x-c | CLexer
sauimone
Floating values to bar charts
r263 #ifndef BARVALUE_P_H
#define BARVALUE_P_H
#include "qchartglobal.h"
sauimone
floating values working now. bounding rect bug fixed
r273 #include <QGraphicsObject>
sauimone
Floating values to bar charts
r263 #include <QPen>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
sauimone
toggling of floating values. still bit buggy
r267 class QBarSet;
sauimone
Floating values to bar charts
r263
// Visual class for floating bar values
// By default these are not visible.
sauimone
floating values working now. bounding rect bug fixed
r273 class BarValue : public QGraphicsObject
sauimone
Floating values to bar charts
r263 {
sauimone
floating values working now. bounding rect bug fixed
r273 Q_OBJECT
sauimone
Floating values to bar charts
r263 public:
sauimone
toggling of floating values. still bit buggy
r267 BarValue(QBarSet &set, QGraphicsItem *parent = 0);
sauimone
Floating values to bar charts
r263
void setValueString(QString str);
QString valueString();
void setPen(const QPen& pen);
const QPen& pen();
void resize(qreal w, qreal h);
void setPos(qreal x, qreal y);
// From QGraphicsItem
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
QRectF boundingRect() const;
sauimone
floating values working now. bounding rect bug fixed
r273 public Q_SLOTS:
void toggleVisible();
sauimone
Floating values to bar charts
r263 private:
sauimone
toggling of floating values. still bit buggy
r267 QBarSet& mBarSet;
sauimone
Floating values to bar charts
r263 QPen mPen;
QString mValueString;
qreal mXpos;
qreal mYpos;
qreal mWidth;
qreal mHeight;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif // BARVALUE_P_H