mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
38 lines
838 B
Markdown
38 lines
838 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" />
|
|
</Tooltip>
|
|
</>
|
|
);
|
|
|
|
export default App;
|
|
```
|