The eventBarVisible property (boolean) determines whether the event bar should be visible.
Available since version 2022.1.5225.
DayPilot.Month.eventBarVisibletrueJavaScript
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"
<!-- ... -->
/>