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

34 lines
544 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
You can custom text format by setting `format`.
2016-01-20 19:50:45 +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-22 10:09:22 +08:00
<Progress type="circle" percent={75} format={percent => `${percent}% Discount`} />
<Progress type="circle" percent={100} format={() => 'Complete'} />
2016-01-20 19:50:45 +08:00
</div>
, mountNode);
2016-01-20 19:50:45 +08:00
````
<style>
2016-04-05 16:51:26 +08:00
.ant-progress-circle,
.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>