PieSeries.qml 395 B

1234567891011121314151617
  1. // Copyright (C) 2016 The Qt Company Ltd.
  2. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
  3. import QtQuick 2.0
  4. import QtCharts 2.0
  5. ChartView {
  6. width: 300
  7. height: 300
  8. PieSeries {
  9. name: "PieSeries"
  10. PieSlice { label: "Slice1"; value: 13.5 }
  11. PieSlice { label: "Slice2"; value: 10.9 }
  12. PieSlice { label: "Slice3"; value: 8.6 }
  13. }
  14. }