mirror of https://github.com/qt/qtgraphs.git
27 lines
564 B
C++
27 lines
564 B
C++
// Copyright (C) 2023 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef SCATTERGRAPH_H
|
|
#define SCATTERGRAPH_H
|
|
|
|
#include <QtCore/qobject.h>
|
|
#include <QtGraphs/q3dscatter.h>
|
|
#include "scatterdatamodifier.h"
|
|
|
|
class ScatterGraph : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ScatterGraph();
|
|
|
|
void initialize();
|
|
QWidget *scatterWidget() { return m_scatterWidget; }
|
|
|
|
private:
|
|
ScatterDataModifier *m_modifier = nullptr;
|
|
Q3DScatter *m_scatterGraph = nullptr;
|
|
QWidget *m_scatterWidget = nullptr;
|
|
};
|
|
|
|
#endif
|