The theme property (string) sets the id of the CSS theme applied to the JavaScript Scheduler component.
DayPilot.Scheduler.themenullUse a theme id such as "scheduler_white" that matches the loaded Scheduler theme stylesheet.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
theme: "scheduler_white",
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
theme: "scheduler_white",
// ...
};React
<DayPilotScheduler
theme="scheduler_white"
{/* ... */}
/>Vue
<DayPilotScheduler
theme="scheduler_white"
<!-- ... -->
/>CSS Themes [doc.daypilot.org]