mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-26 06:00:52 +08:00

* docs: add general components TS demo * docs: add layout components TS demo * docs: add navigation components TS demo * docs: add data entry components TS demo * chore(deps): add types for qs * docs: add data display TS demo * docs: add feedback components TS demo * docs: add other components TS demo * chore(deps): add types * docs: unified demo code style * docs: fix lint error * docs: add demo TS type * docs: fix demo TS type * test: update snapshot * docs: fix TS demo * feat: update Rate character type * docs: fix lint error * feat: update Rate character type * feat: update Rate character type
29 lines
621 B
Markdown
29 lines
621 B
Markdown
---
|
|
order: 8
|
|
title:
|
|
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.
|
|
|
|
```tsx
|
|
import React from 'react';
|
|
import { Progress } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<Progress type="dashboard" percent={75} />
|
|
<Progress type="dashboard" percent={75} gapDegree={30} />
|
|
</>
|
|
);
|
|
|
|
export default App;
|
|
```
|