You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
---
|
|
|
|
order: 3
|
|
|
|
title:
|
|
|
|
zh-CN: 自定义提示
|
|
|
|
en-US: Customize tooltip
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
使用 `tipFormatter` 可以格式化 `Tooltip` 的内容,设置 `tipFormatter={null}`,则隐藏 `Tooltip`。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Use `tipFormatter` to format content of `Tooltip`. If `tipFormatter` is null, hide it.
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import { Slider } from 'antd';
|
|
|
|
|
|
|
|
function formatter(value) {
|
|
|
|
return `${value}%`;
|
|
|
|
}
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<div>
|
|
|
|
<Slider tipFormatter={formatter} />
|
|
|
|
<Slider tipFormatter={null} />
|
|
|
|
</div>,
|
|
|
|
mountNode,
|
|
|
|
);
|
|
|
|
```
|