summaryrefslogtreecommitdiffstats
path: root/examples/charts/qmlchartsgallery/qml/ScatterSeries.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/charts/qmlchartsgallery/qml/ScatterSeries.qml')
-rw-r--r--examples/charts/qmlchartsgallery/qml/ScatterSeries.qml34
1 files changed, 34 insertions, 0 deletions
diff --git a/examples/charts/qmlchartsgallery/qml/ScatterSeries.qml b/examples/charts/qmlchartsgallery/qml/ScatterSeries.qml
new file mode 100644
index 00000000..2f03bfc6
--- /dev/null
+++ b/examples/charts/qmlchartsgallery/qml/ScatterSeries.qml
@@ -0,0 +1,34 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import QtCharts
+
+//![1]
+ChartView {
+ title: "Scatter Chart"
+ anchors.fill: parent
+ antialiasing: true
+
+ ScatterSeries {
+ id: scatter1
+ name: "Scatter A"
+ XYPoint { x: 1.5; y: 1.5 }
+ XYPoint { x: 1.5; y: 1.6 }
+ XYPoint { x: 1.57; y: 1.55 }
+ XYPoint { x: 1.8; y: 1.8 }
+ XYPoint { x: 1.9; y: 1.6 }
+ XYPoint { x: 2.1; y: 1.3 }
+ XYPoint { x: 2.5; y: 2.1 }
+ }
+
+ ScatterSeries {
+ name: "Scatter B"
+ XYPoint { x: 2.0; y: 2.0 }
+ XYPoint { x: 2.0; y: 2.1 }
+ XYPoint { x: 2.07; y: 2.05 }
+ XYPoint { x: 2.2; y: 2.9 }
+ XYPoint { x: 2.4; y: 2.7 }
+ XYPoint { x: 2.67; y: 2.65 }
+ }
+}
+//![1]