Using DHTMLX Scheduler Properties in Angular Scheduler
This page documents the public wrapper surface of @dhtmlx/trial-angular-scheduler and @dhx/angular-scheduler.
Available Inputs
| Input | Type | Description |
|---|---|---|
events | Array<Event \| SerializedEvent> | Event collection rendered in Scheduler. |
date | Date \| string | Active date used to render the selected view. |
view | string | Active Scheduler view. Defaults to "week". |
markers | Marker[] | Time markers and blocked time spans. |
plugins | SchedulerPlugins | Plugin activation map, for example { recurring: true, timeline: true }. |
data | AngularSchedulerDataConfig \| null | Transport callbacks: load, save, batchSave. |
locale | string \| Record<string, any> | Locale name or locale object. Defaults to "en". |
theme | string | Scheduler skin name. Defaults to "terrace". |
templates | AngularSchedulerTemplates | Merged into scheduler.templates; template functions can return Angular template descriptors. |
config | SchedulerConfig | Merged into scheduler.config. |
xy | SchedulerXY | Merged into scheduler.xy sizing options. |
filter | EventFilter | Predicate used to filter displayed events. |
modals | SchedulerModals \| null | Overrides built-in confirmation dialogs. |
eventBoxRenderer | EventBoxRenderer \| null | Custom renderer for event box elements. |
views | SchedulerViewsProp | Registers Timeline, Units, or Grid view configurations. |
customLightbox | CustomLightboxConfig \| Type<any> \| null | Replaces the built-in lightbox with an Angular component. |
on<EventName> | SchedulerCallback | Scheduler event handler input, for example [onViewChange] or [onBeforeLightbox]. |