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

36 lines
791 B
Markdown
Raw Normal View History

2018-01-19 15:22:37 +08:00
---
order: 9
title:
zh-CN: 分段进度条
en-US: Progress bar with success segment
---
## zh-CN
标准的进度条。`type="circle|dashboard"` 时不支持分段颜色。
2018-01-19 15:22:37 +08:00
## en-US
A standard progress bar. Doesn't support trail color when `type="circle|dashboard"`.
2018-01-19 15:22:37 +08:00
2019-05-07 14:57:32 +08:00
```jsx
2018-01-19 15:22:37 +08:00
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>
</>,
2019-05-07 14:57:32 +08:00
mountNode,
2018-11-28 15:00:03 +08:00
);
2019-05-07 14:57:32 +08:00
```