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

577 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(
  <div>
    <Progress type="dashboard" percent={75} />
    <Progress type="dashboard" percent={75} gapDegree={30} />
  </div>
, mountNode);