ant-design/components/progress/demo/linecap.md
2018-08-04 16:59:25 +08:00

27 lines
545 B
Markdown

---
order: 10
title:
zh-CN: 圆角/方角边缘
en-US: Square linecaps
---
## zh-CN
`strokeLinecap="square|round"` 可以调整进度条边缘的形状。
## en-US
By setting `strokeLinecap="square`, you can change the linecaps from round to square.
````jsx
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);
````