The eventBarVisible property (boolean) determines whether the event duration bar should be visible in the Queue component.
Declaration
DayPilot.Queue.eventBarVisibleDefault Value
trueExamples
JavaScript
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"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot