mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-16 01:41:02 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
26 lines
566 B
Markdown
26 lines
566 B
Markdown
---
|
|
order: 8
|
|
title:
|
|
zh-CN: 仪表盘
|
|
en-US: Dashboard
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
通过设置 `type=dashboard`,可以很方便地实现仪表盘样式的进度条。若想要修改缺口的角度,可以设置 `gapDegree` 为你想要的值。
|
|
|
|
## en-US
|
|
|
|
By setting `type=dashboard`, you can get a dashboard style of progress easily. Modify `gapDegree` to set the degree of gap.
|
|
|
|
```jsx
|
|
import { Progress } from 'antd';
|
|
|
|
export default () => (
|
|
<>
|
|
<Progress type="dashboard" percent={75} />
|
|
<Progress type="dashboard" percent={75} gapDegree={30} />
|
|
</>
|
|
);
|
|
```
|