2017-03-17 23:57:34 +08:00
|
|
|
---
|
|
|
|
order: 8
|
|
|
|
title:
|
|
|
|
zh-CN: 仪表盘
|
|
|
|
en-US: Dashboard
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
2020-03-22 17:59:43 +08:00
|
|
|
通过设置 `type=dashboard`,可以很方便地实现仪表盘样式的进度条。若想要修改缺口的角度,可以设置 `gapDegree` 为你想要的值。
|
2017-03-17 23:57:34 +08:00
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
2020-03-22 17:59:43 +08:00
|
|
|
By setting `type=dashboard`, you can get a dashboard style of progress easily. Modify `gapDegree` to set the degree of gap.
|
2017-03-17 23:57:34 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2017-03-17 23:57:34 +08:00
|
|
|
import { Progress } from 'antd';
|
|
|
|
|
2022-04-03 23:27:45 +08:00
|
|
|
export default () => (
|
2020-05-25 16:27:02 +08:00
|
|
|
<>
|
2020-03-22 17:59:43 +08:00
|
|
|
<Progress type="dashboard" percent={75} />
|
|
|
|
<Progress type="dashboard" percent={75} gapDegree={30} />
|
2022-04-03 23:27:45 +08:00
|
|
|
</>
|
2020-05-25 16:27:02 +08:00
|
|
|
);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|