ant-design/components/tooltip/index.en-US.md

24 lines
1.1 KiB
Markdown
Raw Normal View History

2016-08-02 16:06:46 +08:00
---
category: Components
type: Data Display
2016-08-02 16:06:46 +08:00
title: Tooltip
---
A simple text popup tip.
## When To Use
2016-11-29 17:13:24 +08:00
- The tip shows while mouse enter, and hides while mouse leave. The ToolTip doesn't support complex text and operation.
- It can provide an explanation of `button/text/operation` that can cover the usage of the default system `title`.
2016-08-02 16:06:46 +08:00
## API
| Property | Description | Type | Default |
|-----------|------------------------------------------|------------|--------|
| placement | to set the position, which can be one of `top` `left` `right` `bottom` `topLeft` `topRight` `bottomLeft` `bottomRight` `leftTop` `leftBottom` `rightTop` `rightBottom` | string | top |
| title | prompt text | string/React.Element | - |
| getTooltipContainer | to set the container of the tip, while the default is to create a `div` element in `body` | Function(triggerNode) | () => document.body |
2016-08-31 15:02:08 +08:00
| arrowPointAtCenter | whether arrow pointed at the center of target, supported after `antd@1.11+` | Boolean | `false` |
2016-08-02 16:06:46 +08:00
You can visit https://github.com/react-component/tooltip for more API.