##// END OF EJS Templates
Drafting scatter type plotting...
Drafting scatter type plotting Note that the draft implementation is now a part of the test widget. It has to be integrated to the actual API next.

File last commit:

r8:ca68423caa77
r8:ca68423caa77
Show More
qscatterseries.h
20 lines | 402 B | text/x-c | CLexer
#ifndef QSCATTERSERIES_H
#define QSCATTERSERIES_H
#include <QGraphicsItem>
class QScatterSeries : public QGraphicsItem
{
public:
explicit QScatterSeries(QGraphicsItem *parent = 0);
signals:
public slots:
private:
QRectF boundingRect() const;
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
};
#endif // QSCATTERSERIES_H