mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 11:54:27 +00:00
779 B
779 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 9 |
|
zh-CN
标准的进度条。type="circle|dashboard" 时不支持分段颜色。
en-US
A standard progress bar. Doesn't support trail color when type="circle|dashboard".
import { Tooltip, Progress } from 'antd';
ReactDOM.render(
<div>
<Tooltip title="3 done / 3 in progress / 4 to do">
<Progress percent={60} successPercent={30} />
</Tooltip>
<Tooltip title="3 done / 3 in progress / 4 to do">
<Progress percent={60} successPercent={30} type="circle" />
</Tooltip>
<Tooltip title="3 done / 3 in progress / 4 to do">
<Progress percent={60} successPercent={30} type="dashboard" />
</Tooltip>
</div>,
mountNode,
);