You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`currentValue`| The current value of the counter at specific animation tick. It's always a Number and represents a value that is passed as [`legend`](legend.md) or [`progress`](progress.md) to the circle |
41
-
|`currentFormattedValue`|Current value formatted as a String. It's a String representation of the `currentValue` including the formatting wich may be applied with [`legend`](legend.md)|
|`currentValue`| The current value of the counter at a specific animation tick. It's always a Number and represents the value that is passed as [`legend`](legend.md) or [`progress`](progress.md) to the circle.|
44
+
|`currentFormattedValue`|The current value formatted as a String. It's a String representation of the `currentValue`, including any formatting applied with [`legend`](legend.md). |
42
45
43
46
### Examples
44
47
@@ -48,7 +51,7 @@ Alternatively you can use [`scoped slot`](../slots/default.md) for custom format
Copy file name to clipboardExpand all lines: guide/options/progress.md
+14-9Lines changed: 14 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
description: The progress property takes a Number value in the range [-100, 100] and defines the filled area from progress circle line in percent.
2
+
description: The progress property takes a Number value in the range [-100, 100] and defines the filled area from progress circle line in percent. It is used to visually represent the progress of a task or process.
3
3
aside: false
4
4
head:
5
5
- - meta
@@ -15,20 +15,25 @@ head:
15
15
|--------|-------------|---------|
16
16
| Number |[-100, 100]||
17
17
18
-
The `progress` property takes a Number value in the range \[-100, 100] and defines the filled area from progress circle
19
-
line in percent. By default, `progress` is shown as the **legend** in the middle of the circle.
20
-
`progress` is animated
21
-
and counts up or down on any value changes with duration defined in **[`animation.duration`](animation.md)** property.
18
+
The `progress` property takes a Number value in the range \[-100, 100] and defines the filled area from the progress
19
+
circle line in percent.
20
+
By default, `progress` is shown as the **legend** in the middle of the circle.
22
21
23
-
A negative value can be used to fill the progress line counterclockwise. Alternatively the same effect can be achieved
22
+
`progress` is animated and counts up or down on any value changes with duration defined in
0 commit comments