mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-16 01:41:02 +08:00
4ca2ed63bd
* feat: V5 Responsive Circle Progress * fix: add useMemo * Update components/progress/demo/circle-micro.md Co-authored-by: MadCcc <1075746765@qq.com> * Update components/progress/demo/circle-micro.md Co-authored-by: MadCcc <1075746765@qq.com> * Update components/progress/demo/circle-micro.md Co-authored-by: MadCcc <1075746765@qq.com> * Update components/progress/progress.tsx Co-authored-by: MadCcc <1075746765@qq.com> * fix: raname processInfo * fix: add dep list * fix: add demo * fix: fix width * fix: fix width * fix: fix snap * fix: rename * fix: snap * Update components/progress/Circle.tsx Co-authored-by: MadCcc <1075746765@qq.com> * fix: rename * fix: fix style * fix: update demo * fix: fix style * fix: fix ci * fix: fix style * fix: del verticalAlign * fix: fix * fix: fix cicd * fix: update demo * fix: update demo * fix: fix style * fix: fix style Co-authored-by: MadCcc <1075746765@qq.com>
36 lines
862 B
Markdown
36 lines
862 B
Markdown
---
|
|
order: 9
|
|
title:
|
|
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"`.
|
|
|
|
```tsx
|
|
import { Progress, Tooltip } from 'antd';
|
|
import React from 'react';
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<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" style={{ marginLeft: 8 }} />
|
|
</Tooltip>
|
|
</>
|
|
);
|
|
|
|
export default App;
|
|
```
|