UNPKG

@progress/kendo-angular-gantt

Version:
23 lines (22 loc) 845 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Represents the settings for the current time marker in the Gantt component. * */ export interface CurrentTimeSettings { /** * Sets the update interval in milliseconds for the current time marker. * Use this property to control how often the marker updates. * @default 60000 */ updateInterval?: number; /** * Shows or hides the current time marker. * Set to `true` to display the marker. * @default true */ enabled?: boolean; }