ant-design/components/progress/demo/segment.md
ThisRabbit 0519111a99
fix: gapDegree=0 in Dashboard progress is now working (#22462)
* fix: gapDegree=0 in Dashboard progress is now working

* update jest snapshot for Progress

* Add use case of gapDegree and test cases. Also doc error correction
2020-03-22 17:59:43 +08:00

36 lines
779 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(
<div>
<Tooltip title="3 done / 3 in progress / 4 to do">
<Progress percent={60} successPercent={30} />
</Tooltip>
<Tooltip title="3 done / 3 in progress / 4 to do">
<Progress percent={60} successPercent={30} type="circle" />
</Tooltip>
<Tooltip title="3 done / 3 in progress / 4 to do">
<Progress percent={60} successPercent={30} type="dashboard" />
</Tooltip>
</div>,
mountNode,
);
```