SplineSeries.qml 365 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. SplineSeries {
  9. id: splineSeries
  10. XYPoint { x: 1; y: 1 }
  11. XYPoint { x: 2; y: 4 }
  12. XYPoint { x: 4; y: 2 }
  13. XYPoint { x: 5; y: 5 }
  14. }
  15. }