The todayHeight property (number) sets the height of the section that displays the "Today" button in the Navigator, in pixels.
DayPilot.Navigator.todayHeight40JavaScript
const nav = new DayPilot.Navigator("dp", {
showToday: true,
todayHeight: 48,
// ...
});
nav.init();Angular
<daypilot-navigator [config]="config"></daypilot-navigator>config: DayPilot.NavigatorConfig = {
showToday: true,
todayHeight: 48,
// ...
};React
<DayPilotNavigator
showToday={true}
todayHeight={48}
{/* ... */}
/>Vue
<DayPilotNavigator
:showToday="true"
:todayHeight="48"
<!-- ... -->
/>