UNPKG

@progress/kendo-angular-scheduler

Version:

Kendo UI Scheduler Angular - Outlook or Google-style angular scheduler calendar. Full-featured and customizable embedded scheduling from the creator developers trust for professional UI components.

28 lines (27 loc) 896 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 current time marker settings. */ export interface CurrentTimeSettings { /** * Sets the update interval in milliseconds for the current time marker. * * @default 60000 */ updateInterval?: number; /** * Specifies if the local timezone is used. If `false`, the Scheduler uses its own timezone. * * @default true */ localTimezone?: boolean; /** * Specifies if the current time marker is displayed. * * @default true */ enabled?: boolean; }