AreaSeries.qml 431 B

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