@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) • 829 B
TypeScript
/**-----------------------------------------------------------------------------------------
* 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 highlighting ongoing events.
*/
export interface OngoingEventsSettings {
/**
* Sets the update interval in milliseconds for the ongoing events highlight.
*
* @default 60000
*/
updateInterval?: number;
/**
* Specifies if ongoing events are highlighted.
*
* @default true
*/
enabled?: boolean;
/**
* Sets a custom CSS class for ongoing events.
*/
cssClass?: string;
}