2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2017 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2025-04-08 12:36:32 +00:00
|
|
|
pragma ComponentBehavior: Bound
|
2022-08-31 07:59:05 +00:00
|
|
|
import QtQuick
|
|
|
|
import Charts
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
Item {
|
|
|
|
width: 300; height: 200
|
|
|
|
|
|
|
|
PieChart {
|
2025-04-08 12:36:32 +00:00
|
|
|
id: chart
|
2011-04-27 10:05:43 +00:00
|
|
|
anchors.centerIn: parent
|
|
|
|
width: 100; height: 100
|
|
|
|
|
2025-04-08 12:36:32 +00:00
|
|
|
component Slice: PieSlice {
|
|
|
|
parent: chart
|
|
|
|
anchors.fill: parent
|
|
|
|
}
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
slices: [
|
2025-04-08 12:36:32 +00:00
|
|
|
Slice {
|
2011-04-27 10:05:43 +00:00
|
|
|
color: "red"
|
2025-04-08 12:36:32 +00:00
|
|
|
fromAngle: 0
|
|
|
|
angleSpan: 110
|
2011-04-27 10:05:43 +00:00
|
|
|
},
|
2025-04-08 12:36:32 +00:00
|
|
|
Slice {
|
2011-04-27 10:05:43 +00:00
|
|
|
color: "black"
|
2025-04-08 12:36:32 +00:00
|
|
|
fromAngle: 110
|
|
|
|
angleSpan: 50
|
2011-04-27 10:05:43 +00:00
|
|
|
},
|
2025-04-08 12:36:32 +00:00
|
|
|
Slice {
|
2011-04-27 10:05:43 +00:00
|
|
|
color: "blue"
|
2025-04-08 12:36:32 +00:00
|
|
|
fromAngle: 160
|
|
|
|
angleSpan: 100
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|