Blazorise Tooltip API
Explore the Blazorise Tooltip API reference for parameters, events, methods, and related types.
For examples and usage guidance, see the Tooltip documentation.
API
Parameters
| Parameter | Description | Type | Default |
|---|---|---|---|
AlwaysActive |
Always show tooltip, instead of just when hovering over the element. |
bool | false |
AppendTo |
The element to append the tooltip to. If Interactive = true, the default behavior is appendTo: "parent". |
string | |
ChildContent |
Specifies the content to be rendered inside this Tooltip. |
RenderFragment | null |
Fade |
Makes the tooltip fade transition. |
bool | false |
FadeDuration |
Duration in ms of the fade transition animation. |
int | 300 |
HideDelay |
Specifies the delay in ms once a trigger event is fired before a Tooltip hides. |
int? | null |
Inline |
Force inline block instead of trying to detect the element block. |
bool | false |
Interactive |
Determines if the tooltip has interactive content inside of it, so that it can be hovered over and clicked inside without hiding. |
bool | false |
Multiline |
Force the multiline display. |
bool | false |
Placement |
Specifies the tooltip location relative to its component. Possible values: |
TooltipPlacement | TooltipPlacement.Top |
ShowArrow |
Specifies the tooltip arrow visibility. |
bool | true |
ShowDelay |
Specifies the delay in ms once a trigger event is fired before a Tooltip shows. |
int? | null |
Text |
Specifies a regular tooltip's content. |
string | |
Trigger |
Determines the events that cause the tooltip to show. Possible values: |
TooltipTrigger | default(TooltipTrigger) |
TriggerTargetId |
Which element the trigger event listeners are applied to (instead of the reference element). |
string | |
ZIndex |
Specifies the z-index CSS on the root popper node. |
int? | 9999 |