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.

26 lines (25 loc) 925 B
/**----------------------------------------------------------------------------------------- * 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 local timezone will be used. * If set to `false`, the Scheduler will use its own timezone. * Defaults to `true`. */ localTimezone?: boolean; /** * Specifies if the current time marker will be displayed. * Defaults to `true`. */ enabled?: boolean; }