ant-design/components/progress/demo/dashboard.md

21 lines
368 B
Markdown
Raw Normal View History

---
order: 8
title:
zh-CN: 仪表盘
en-US: Dashboard
---
## zh-CN
2017-07-07 14:18:57 +08:00
通过设置 `type=dashboard`,可以很方便地实现仪表盘样式的进度条。
## en-US
2017-07-07 14:18:57 +08:00
By setting `type=dashboard`, you can get a dashboard style of progress easily.
2019-05-07 14:57:32 +08:00
```jsx
import { Progress } from 'antd';
2017-04-01 11:30:44 +08:00
ReactDOM.render(<Progress type="dashboard" percent={75} />, mountNode);
2019-05-07 14:57:32 +08:00
```