2016-07-26 15:42:04 +08:00
---
category: Components
2016-11-09 14:43:32 +08:00
type: Feedback
2016-07-26 15:42:04 +08:00
title: Progress
2020-06-05 13:50:09 +08:00
cover: https://gw.alipayobjects.com/zos/alicdn/xqsDu4ZyR/Progress.svg
2016-07-26 15:42:04 +08:00
---
2017-09-11 10:13:21 +08:00
Display the current progress of an operation flow.
2016-07-26 15:42:04 +08:00
2016-09-10 13:43:30 +08:00
## When To Use
2016-07-26 15:42:04 +08:00
2017-09-11 10:13:21 +08:00
If it will take a long time to complete an operation, you can use `Progress` to show the current progress and status.
2016-07-26 15:42:04 +08:00
- When an operation will interrupt the current interface, or it needs to run in the background for more than 2 seconds.
- When you need to display the completion percentage of an operation.
## API
2019-01-29 15:23:23 +08:00
Properties that shared by all types.
2019-11-20 17:46:50 +08:00
| Property | Description | Type | Default |
| --- | --- | --- | --- |
2020-07-02 15:33:42 +08:00
| format | The template function of the content | function(percent, successPercent) | (percent) => percent + `%` |
| percent | To set the completion percentage | number | 0 |
| showInfo | Whether to display the progress value and the status icon | boolean | true |
| status | To set the status of the Progress, options: `success` `exception` `normal` `active` (line only) | string | - |
| strokeColor | The color of progress bar | string | - |
2020-10-21 10:33:43 +08:00
| strokeLinecap | To set the style of the progress linecap | `round` \| `square` | `round` |
2020-07-02 15:33:42 +08:00
| success | Configs of successfully progress bar | { percent: number, strokeColor: string } | - |
2020-10-21 10:33:43 +08:00
| trailColor | The color of unfilled part | string | - |
| type | To set the type, options: `line` `circle` `dashboard` | string | `line` |
2019-01-29 15:23:23 +08:00
### `type="line"`
2019-11-20 17:46:50 +08:00
| Property | Description | Type | Default |
| --- | --- | --- | --- |
2020-07-02 15:33:42 +08:00
| steps | The total step count | number | - |
2020-10-21 10:33:43 +08:00
| strokeColor | The color of progress bar, render `linear-gradient` when passing an object | string \| { from: string; to: string; direction: string } | - |
| strokeWidth | To set the width of the progress bar, unit: `px` | number | 10 |
2019-01-29 15:23:23 +08:00
### `type="circle"`
2019-11-20 17:46:50 +08:00
| Property | Description | Type | Default |
| --- | --- | --- | --- |
2020-07-02 15:33:42 +08:00
| strokeColor | The color of circular progress, render `linear-gradient` when passing an object | string \| object | - |
2020-10-21 10:33:43 +08:00
| strokeWidth | To set the width of the circular progress, unit: percentage of the canvas width | number | 6 |
| width | To set the canvas width of the circular progress, unit: `px` | number | 132 |
2019-01-29 15:23:23 +08:00
### `type="dashboard"`
2019-11-20 17:46:50 +08:00
| Property | Description | Type | Default |
| --- | --- | --- | --- |
2020-07-02 15:33:42 +08:00
| gapDegree | The gap degree of half circle, 0 ~ 295 | number | 75 |
| gapPosition | The gap position, options: `top` `bottom` `left` `right` | string | `bottom` |
2020-10-21 10:33:43 +08:00
| strokeWidth | To set the width of the dashboard progress, unit: percentage of the canvas width | number | 6 |
| width | To set the canvas width of the dashboard progress, unit: `px` | number | 132 |