mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
21 lines
368 B
Markdown
21 lines
368 B
Markdown
---
|
|
order: 8
|
|
title:
|
|
zh-CN: 仪表盘
|
|
en-US: Dashboard
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
通过设置 `type=dashboard`,可以很方便地实现仪表盘样式的进度条。
|
|
|
|
## en-US
|
|
|
|
By setting `type=dashboard`, you can get a dashboard style of progress easily.
|
|
|
|
```jsx
|
|
import { Progress } from 'antd';
|
|
|
|
ReactDOM.render(<Progress type="dashboard" percent={75} />, mountNode);
|
|
```
|