LineSeries.qml 367 B

123456789101112131415161718
  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. LineSeries {
  9. id: lineSeries
  10. XYPoint { x: 0; y: 2 }
  11. XYPoint { x: 1; y: 1.2 }
  12. XYPoint { x: 2; y: 3.3 }
  13. XYPoint { x: 5; y: 2.1 }
  14. }
  15. }