The eventHeight property (number) specifies the event box height in pixels.
DayPilot.Queue.eventHeight35JavaScript
const queue = new DayPilot.Queue("dp", {
eventHeight: 30,
// ...
});
queue.init();Angular
<daypilot-queue [config]="config"></daypilot-queue>config: DayPilot.QueueConfig = {
eventHeight: 30,
// ...
};React
<DayPilotQueue
eventHeight={30}
{/* ... */}
/>Vue
<DayPilotQueue
:eventHeight="30"
<!-- ... -->
/>