ant-design/components/progress/demo/segment.md
偏右 a5efa7a81a
test: increase coverage of Progress/Comment/Avatar/Dropdown (#24439)
* test: increase test case of Progress and Comment

* test: add test case for Avatar

* test: add test case for Dropdown

* fix snapshot

* fix snapshot

* remove console.log

* fix lint

* add avatar
2020-05-25 16:27:02 +08:00

773 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} 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>
  </>,
  mountNode,
);