mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
833e076eb7
Before: >Customerize tooltip After: >Customize tooltip
522 B
522 B
order | title | ||||
---|---|---|---|---|---|
3 |
|
zh-CN
使用 tipFormatter
可以格式化 Tooltip
的内容,设置 tipFormatter={null}
,则隐藏 Tooltip
。
en-US
Use tipFormatter
to format content of Toolip
. If tipFormatter
is null, hide it.
import { Slider } from 'antd';
function formatter(value) {
return `${value}%`;
}
ReactDOM.render(
<div>
<Slider tipFormatter={formatter} />
<Slider tipFormatter={null} />
</div>,
mountNode
);