##// END OF EJS Templates
Adds missing scatter intercation implementation...
Adds missing scatter intercation implementation * adds Marker decorator to track points * tune up scatter interaction example * remove not inplemented marker types from list * bufix xyseries model , handle points with same x value and diffrent y value

File last commit:

r541:4eee071cd5a1
r541:4eee071cd5a1
Show More
mainwindow.h
27 lines | 479 B | text/x-c | CLexer
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QtGui/QMainWindow>
#include <qchartglobal.h>
#include <qscatterseries.h>
QTCOMMERCIALCHART_USE_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = 0);
~MainWindow();
private Q_SLOTS:
void handleClickedPoint(const QPointF& point);
private:
QScatterSeries *m_scatter;
QScatterSeries *m_scatter2;
QScatterSeries *m_scatter3;
};
#endif // MAINWINDOW_H