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
|
|
|
|
2019-05-07 14:57:32 +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(
|
2020-05-25 16:27:02 +08:00
|
|
|
<>
|
2016-09-30 15:21:03 +08:00
|
|
|
<Progress type="circle" percent={75} format={percent => `${percent} Days`} />
|
|
|
|
<Progress type="circle" percent={100} format={() => 'Done'} />
|
2020-05-25 16:27:02 +08:00
|
|
|
</>,
|
2019-05-07 14:57:32 +08:00
|
|
|
mountNode,
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|
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
|
|
|
}
|
2020-01-02 19:10:16 +08:00
|
|
|
[class*='-col-rtl'] div.ant-progress-circle,
|
|
|
|
[class*='-col-rtl'] div.ant-progress-line {
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
2016-01-20 19:50:45 +08:00
|
|
|
</style>
|