ant-design/components/progress/demo/segment.md
zoomdong 2ad8fec45d
fix: change progress to percent in success props & warning in Progress (#25356)
* fix: warning in Progress

* feat: update api

* feat: update

* update

* update demo

* feat: add test case

* update test case
2020-07-01 23:32:22 +08:00

791 B

order title
9
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".

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,
);