ant-design/components/slider/demo/tip-formatter.md

20 lines
367 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 5
2016-04-07 12:10:21 +08:00
title: 自定义提示
2016-03-31 09:40:55 +08:00
---
2015-12-24 09:54:59 +08:00
使用 `tipFormatter` 可以格式化 `Tooltip` 的内容,设置 `tipFormatter={null}`,则隐藏 `Tooltip`
````jsx
import { Slider } from 'antd';
function formatter(value) {
return `${value}%`;
}
2015-12-24 09:54:59 +08:00
ReactDOM.render(<div>
<Slider tipFormatter={formatter} />
<Slider tipFormatter={null} />
</div>, mountNode);
````