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

34 lines
550 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 6
2016-07-26 15:42:04 +08:00
title:
zh-CN: 自定义文字格式
en-US: Custom text format
2016-03-31 09:40:55 +08:00
---
2016-01-20 19:50:45 +08:00
2016-07-26 15:42:04 +08:00
## zh-CN
2016-01-20 19:50:45 +08:00
`format` 属性指定格式。
2016-07-26 15:42:04 +08:00
## en-US
2018-07-29 00:58:10 +08:00
You can set a custom text by setting the `format` prop.
2016-07-26 15:42:04 +08:00
2017-02-13 10:55:53 +08:00
````jsx
2016-01-20 20:20:24 +08:00
import { Progress } from 'antd';
2016-01-20 19:50:45 +08:00
ReactDOM.render(
<div>
2016-09-30 15:21:03 +08:00
<Progress type="circle" percent={75} format={percent => `${percent} Days`} />
<Progress type="circle" percent={100} format={() => 'Done'} />
2018-06-27 15:55:04 +08:00
</div>,
mountNode);
2016-01-20 19:50:45 +08:00
````
<style>
2017-02-22 19:31:50 +08:00
div.ant-progress-circle,
div.ant-progress-line {
2016-01-20 19:50:45 +08:00
margin-right: 8px;
2016-04-05 16:51:26 +08:00
margin-bottom: 8px;
2016-01-20 19:50:45 +08:00
}
</style>