##// END OF EJS Templates
background to legend, theme applies
background to legend, theme applies

File last commit:

r486:7ab45bf9f776
r540:7d8a0757e05d
Show More
mainwindow.h
27 lines | 469 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 clickPoint(QPointF coordinate);
private:
QScatterSeries *m_scatter;
QScatterSeries *m_scatter2;
QScatterSeries *m_scatter3;
};
#endif // MAINWINDOW_H