UNPKG

@progress/kendo-angular-tooltip

Version:

Kendo UI Tooltip for Angular - A highly customizable and easily themeable tooltip from the creators developers trust for professional Angular components.

15 lines (14 loc) 856 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Specifies the position of the Tooltip or Popover in relation to the anchor element. * * The available options are: * - `top` (default)—Aligns the tooltip above the `anchor` element. * - `bottom`—Aligns the tooltip below the `anchor` element. * - `right`—Aligns the tooltip with the rightmost point of the `anchor` element. * - `left`—Aligns the tooltip with the leftmost point of the `anchor` element. */ export type Position = 'top' | 'bottom' | 'right' | 'left';