mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
544 B
544 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}% Discount`} />
<Progress type="circle" percent={100} format={() => 'Complete'} />
</div>
, mountNode);