The eventBarVisible property (boolean) determines whether the event duration bar should be visible in the Queue component.
DayPilot.Queue.eventBarVisibletrueJavaScript
const queue = new DayPilot.Queue("dp", {
eventBarVisible: false,
// ...
});
queue.init();Angular
<daypilot-queue [config]="config"></daypilot-queue>config: DayPilot.QueueConfig = {
eventBarVisible: false,
// ...
};React
<DayPilotQueue
eventBarVisible={false}
{/* ... */}
/>Vue
<DayPilotQueue
:eventBarVisible="false"
<!-- ... -->
/>