mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
542 B
542 B
order | title | ||||
---|---|---|---|---|---|
6 |
|
zh-CN
format
属性指定格式。
en-US
You can custom text format by setting format
.
import { Progress } from 'antd';
ReactDOM.render(
<div>
<Progress type="circle" percent={75} format={percent => `${percent / 10.0}折`} />
<Progress type="circle" percent={100} format={() => '成功'} />
</div>
, mountNode);