@progress/kendo-angular-gantt
Version:
Kendo UI Angular Gantt
20 lines (19 loc) • 733 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* The settings for the current time marker.
*/
export interface CurrentTimeSettings {
/**
* The update interval (in milliseconds) of the current time marker.
* Defaults to `60000` (a minute).
*/
updateInterval?: number;
/**
* Specifies if the current time marker will be displayed.
* Defaults to `true`.
*/
enabled?: boolean;
}