mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
2ad8fec45d
* fix: warning in Progress * feat: update api * feat: update * update * update demo * feat: add test case * update test case
36 lines
791 B
Markdown
36 lines
791 B
Markdown
---
|
|
order: 9
|
|
title:
|
|
zh-CN: 分段进度条
|
|
en-US: Progress bar with success segment
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
标准的进度条。`type="circle|dashboard"` 时不支持分段颜色。
|
|
|
|
## en-US
|
|
|
|
A standard progress bar. Doesn't support trail color when `type="circle|dashboard"`.
|
|
|
|
```jsx
|
|
import { Tooltip, Progress } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<>
|
|
<Tooltip title="3 done / 3 in progress / 4 to do">
|
|
<Progress percent={60} success={{ percent: 30 }} />
|
|
</Tooltip>
|
|
|
|
<Tooltip title="3 done / 3 in progress / 4 to do">
|
|
<Progress percent={60} success={{ percent: 30 }} type="circle" />
|
|
</Tooltip>
|
|
|
|
<Tooltip title="3 done / 3 in progress / 4 to do">
|
|
<Progress percent={60} success={{ percent: 30 }} type="dashboard" />
|
|
</Tooltip>
|
|
</>,
|
|
mountNode,
|
|
);
|
|
```
|