The dayHeaderHeight property (number) sets the height of the day header row that displays day names such as Mo and Tu in the Navigator, in pixels.
DayPilot.Navigator.dayHeaderHeight30JavaScript
const dp = new DayPilot.Navigator("dp", {
dayHeaderHeight: 24,
// ...
});
dp.init();Angular
<daypilot-navigator [config]="config"></daypilot-navigator>config: DayPilot.NavigatorConfig = {
dayHeaderHeight: 24,
// ...
};React
<DayPilotNavigator
dayHeaderHeight={24}
{/* ... */}
/>Vue
<DayPilotNavigator
:dayHeaderHeight="24"
<!-- ... -->
/>