The theme property (string) sets the CSS theme applied to the Queue component.
DayPilot.Queue.theme"queue_default"JavaScript
const queue = new DayPilot.Queue("dp", {
theme: "my_theme",
// ...
});
queue.init();Angular
<daypilot-queue [config]="config"></daypilot-queue>config: DayPilot.QueueConfig = {
theme: "my_theme",
// ...
};React
<DayPilotQueue
theme="my_theme"
{/* ... */}
/>Vue
<DayPilotQueue
theme="my_theme"
<!-- ... -->
/>