ant-design/components/progress/demo/format.md
Marius Ileana 837ec0cb07 docs: Spin, Progress - demos - english translation (#3051)
* spin demos translation

* Progress demo translation
2016-09-18 09:24:49 +08:00

553 B

order title
6
zh-CN en-US
自定义文字格式 Custom text format

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} In Progress`} />
    <Progress type="circle" percent={100} format={() => 'Complete'} />
  </div>
, mountNode);