TooltipProps
Represents the props of the Kendo UI for Vue Tooltip component.
Definition
Package:@progress/kendo-vue-tooltip
Properties
anchorElement?
string
Sets the anchor element of the Tooltip.
The available options are:
- (Default)
pointer—Shows a Tooltip where the cursor is located. target—Positions the Tooltip based on the anchor element.
className?
string
Sets a class of the Tooltip animation container.
content?
any
Sets the content of the Tooltip (see example).
filter?
(target: HTMLElement) => void
Represents a callback function which determines if a Tooltip will be displayed (see example).
onClose?
(event: TooltipEvent) => void
Fires when the Tooltip is hidden.
onOpen?
(event: TooltipEvent) => void
Fires when the Tooltip is shown.
open?
boolean
Specifies if the Tooltip will be open.
Sets the Tooltip in its controlled mode (see example).
Requires you to set the targetElement property.
openDelay?
number
Sets a delay in milliseconds.
parentTitle?
boolean
If any of the parent elements has a title, displays a Tooltip.
position?
String | TooltipPosition
Sets the position of the Tooltip (see example).
The available options are:
- (Default)
auto—Positions the Tooltip depending on the available space. right—Positions the Tooltip to the right side of the element.left—Positions the Tooltip to the left side of the element.bottom—Positions the Tooltip at the bottom of the element.top—Positions the Tooltip at the top of the element.
When the position is set to auto, sets the start point of the Tooltip callout (in pixels).
showCallout?
boolean
Specifies if the Tooltip callout will be displayed.
Sets the Tooltip target element. You have to use it with the open property.
tooltipClassName?
string
Specifies the CSS class names which are set to the Tooltip DOM element.
Specifies the styles which are set to the Tooltip DOM element.
updateInterval?
number
The milliseconds interval on which the Tooltip will check for title change. By default the Tooltip does not track for title updates.
Callback called when the Tooltip calculates it's position. Useful to modify the default position behavior.
Require to return the top and left position of the Tooltip.
wrapperStyle?
object
Sets a class of the Tooltip animation container.