|
|
|
@ -2,7 +2,7 @@
|
|
|
|
|
|
|
|
|
|
- order: 5
|
|
|
|
|
|
|
|
|
|
使用 `tipFormatter` 可以格式化 `Tooltip` 的内容。
|
|
|
|
|
使用 `tipFormatter` 可以格式化 `Tooltip` 的内容,设置 `tipFormatter={null}`,则隐藏 `Tooltip`。
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
@ -13,6 +13,8 @@ function formatter(value) {
|
|
|
|
|
return '$' + value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ReactDOM.render(<Slider tipFormatter={formatter} />
|
|
|
|
|
, document.getElementById('components-slider-demo-tip-formatter'));
|
|
|
|
|
ReactDOM.render(<div>
|
|
|
|
|
<Slider tipFormatter={formatter} />
|
|
|
|
|
<Slider tipFormatter={null} />
|
|
|
|
|
</div>, document.getElementById('components-slider-demo-tip-formatter'));
|
|
|
|
|
````
|
|
|
|
|