Skip to main content

arrow

Description

Optional. Defines whether a directional arrow is shown on the tooltip

Usage

arrow?: boolean;

Parameters

  • false - (default) no arrow is shown
  • true - a directional arrow pointing toward the hovered element is shown
note

This prop has no effect when at is "point".

Example

<Tooltip at="top-center" arrow>
<div data-tooltip-text="Hello">Hover me</div>
</Tooltip>

Related article: Configuring tooltip position

Related sample: Tooltip