The eventBarVisible property (boolean) determines whether the event bar should be visible.
Available since version 2022.1.5225.
Declaration
DayPilot.Month.eventBarVisibleDefault Value
trueExamples
JavaScript
const month = new DayPilot.Month("dp", {
eventBarVisible: false,
// ...
});
month.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
eventBarVisible: false,
// ...
};React
<DayPilotMonth
eventBarVisible={false}
{/* ... */}
/>Vue
<DayPilotMonth
:eventBarVisible="false"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot