The theme property (string) sets the CSS theme applied to the Queue component.
Declaration
DayPilot.Queue.themeDefault Value
"queue_default"Examples
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"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot