PieSeries.qml 384 B

1234567891011121314151617
  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. PieSeries {
  9. id: pieSeries
  10. PieSlice { label: "Slice1"; value: 13.5 }
  11. PieSlice { label: "Slice2"; value: 10.9 }
  12. PieSlice { label: "Slice3"; value: 8.6 }
  13. }
  14. }