mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 11:54:27 +00:00
559 B
559 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 10 |
|
zh-CN
通过设定 strokeLinecap="square|round" 可以调整进度条边缘的形状。
en-US
By setting strokeLinecap="square", you can change the linecaps from round to square.
import { Progress } from 'antd';
ReactDOM.render(
<div>
<Progress strokeLinecap="square" percent={75} />
<Progress strokeLinecap="square" type="circle" percent={75} />
<Progress strokeLinecap="square" type="dashboard" percent={75} />
</div>,
mountNode,
);