ant-design/components/progress/demo/dashboard.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

574 B

order title
8
zh-CN en-US
仪表盘 Dashboard

zh-CN

通过设置 type=dashboard,可以很方便地实现仪表盘样式的进度条。若想要修改缺口的角度,可以设置 gapDegree 为你想要的值。

en-US

By setting type=dashboard, you can get a dashboard style of progress easily. Modify gapDegree to set the degree of gap.

import { Progress } from 'antd';

ReactDOM.render(
  <>
    <Progress type="dashboard" percent={75} />
    <Progress type="dashboard" percent={75} gapDegree={30} />
  </>,
  mountNode,
);