New to Kendo UI for Angular? Start a free 30-day trial
PopoverShowOption
The PopoverShowOption
type defines the different ways a Popover can be displayed based on user interaction with its anchor element.
The supported values are:
click
(default) — Shows the Popover when its anchor element is clicked.hover
—Shows the Popover when its anchor element is hovered.focus
—Shows the Popover when its anchor element is focused.none
—Does not show the Popover on user interaction. You can render it via the Popover API methods.
type
PopoverShowOption = "hover" | "click" | "none" | "focus";