@progress/kendo-angular-gantt
Version:
Kendo UI Angular Gantt
29 lines (28 loc) • 961 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { Position } from '@progress/kendo-angular-tooltip';
/**
* Configures the options for the tooltip that appears when you hover over a task.
*/
export interface TaskTooltipOptions {
/**
* Sets the `position` of the Tooltip or Popover relative to the anchor element.
*
* @default 'left'
*/
position: Position;
/**
* Shows a callout arrow on the Tooltip when set to `true`.
*
* @default true
*/
callout: boolean;
/**
* Sets the delay in milliseconds before the Tooltip appears.
*
* @default 100
*/
showAfter: number;
}