From 4d863fb78b59893d77243ce286917af2668ddb98 Mon Sep 17 00:00:00 2001 From: Albert Astals Cid Date: Tue, 23 Feb 2021 16:09:55 +0100 Subject: Fix QML ScatterSeries example The text says "The following QML code shows how to create a chart with two simple scatter series:", so include the 2 series, otherwise looks strange Change-Id: Iab848dff8657a7815b9e12ce8f4ce3d07e14b757 Reviewed-by: Miikka Heikkinen --- examples/charts/qmlchart/qml/qmlchart/View5.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/charts/qmlchart/qml/qmlchart/View5.qml b/examples/charts/qmlchart/qml/qmlchart/View5.qml index e67b3067..f84f8612 100644 --- a/examples/charts/qmlchart/qml/qmlchart/View5.qml +++ b/examples/charts/qmlchart/qml/qmlchart/View5.qml @@ -53,7 +53,6 @@ Item { ScatterSeries { name: "Scatter2" - //![1] XYPoint { x: 2.0; y: 2.0 } XYPoint { x: 2.0; y: 2.1 } XYPoint { x: 2.07; y: 2.05 } @@ -62,4 +61,5 @@ Item { XYPoint { x: 2.67; y: 2.65 } } } + //![1] } -- cgit v1.2.3