ant-design/components/progress/demo/linecap.md

28 lines
559 B
Markdown
Raw Normal View History

---
order: 10
title:
2018-08-04 16:58:05 +08:00
zh-CN: 圆角/方角边缘
en-US: Square linecaps
---
## zh-CN
2018-08-25 22:18:25 +08:00
通过设定 `strokeLinecap="square|round"` 可以调整进度条边缘的形状。
## en-US
2018-08-25 22:18:25 +08:00
By setting `strokeLinecap="square"`, you can change the linecaps from round to square.
2019-05-07 14:57:32 +08:00
```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>,
2019-05-07 14:57:32 +08:00
mountNode,
2018-11-28 15:00:03 +08:00
);
2019-05-07 14:57:32 +08:00
```