The showHeader property (boolean) specifies whether the calendar displays column headers.
DayPilot.Calendar.showHeadertrueKeep this property enabled when you want the current view to show column labels and custom header content.
Use the header formatting and customization options to change the header appearance without hiding it completely.
JavaScript
const calendar = new DayPilot.Calendar("dp", {
showHeader: false,
// ...
});
calendar.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
showHeader: false,
// ...
};React
<DayPilotCalendar
showHeader={false}
{/* ... */}
/>Vue
<DayPilotCalendar
:showHeader="false"
<!-- ... -->
/>DayPilot.Calendar.headerDateFormat
Column Header Customization [doc.daypilot.org]