ProgressRing QML Type
A circular progress indicator. More...
| Import Statement: | import FluentUI.Controls 1.0 |
Properties
- color : color
- from : real
- indeterminate : bool
- strokeWidth : real
- to : real
- value : real
Detailed Description
ProgressRing displays progress as an animated ring that fills from the top clockwise. It supports determinate mode with a specific value, as well as indeterminate mode with a looping animation.
Property Documentation
color : color
The color of the progress ring fill.
from : real
The starting value of the progress range. Defaults to 0.
indeterminate : bool
Whether the progress ring is in indeterminate mode. When true, the ring animates continuously to indicate activity without a specific progress value.
strokeWidth : real
The width of the ring stroke in pixels. Larger values produce a thicker ring.
to : real
The ending value of the progress range. Defaults to 100.
value : real
The current progress value, constrained between from and to. Represents the filled portion of the ring.