import QtQuick 2.15 import QtQuick.Controls 2.15 import QtQuick.Studio.Components 1.0 import QtQuick.Shapes 1.0 Item { id: item1 width: 1920 height: 1080 ArcItem { id: arc x: 684 y: 200 width: 101 height: 101 fillColor: "#30a2e6" begin: 2 strokeWidth: 0 arcWidth: 27 outlineArc: true end: 90 strokeColor: "#00ff0000" } PieItem { id: pie x: 936 y: 200 } ArcItem { id: arc1 x: 684 y: 349 width: 101 height: 101 arcWidth: 27 outlineArc: true end: 90 strokeColor: "#00ff0000" begin: 2 strokeWidth: 0 gradient: LinearGradient { y1: 0 GradientStop { position: 0 color: "#d5e9f5" } GradientStop { position: 1 color: "#1a01ff" } y2: 101 x1: 0 x2: 101 } } Rectangle { id: rectangle x: 527 y: 494 width: 195 height: 200 color: "#ffffff" } } /*##^## Designer { D{i:0;formeditorZoom:4}D{i:1}D{i:3}D{i:7} } ##^##*/