21 lines
431 B
QML
21 lines
431 B
QML
// 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 }
|
|
}
|
|
}
|
|
}
|