blob: 5339ce2dfaba9335dca95fda9c34bb7aae36ec22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick
import QtGraphs
GraphsView {
width: 300
height: 300
AreaSeries {
name: "AreaSeries"
upperSeries: LineSeries {
XYPoint { x: 0; y: 1.5 }
XYPoint { x: 1; y: 3 }
XYPoint { x: 3; y: 4.3 }
XYPoint { x: 6; y: 1.1 }
}
}
}
|