The cellHeight property (number) sets the height of the Navigator date picker cells in pixels.
DayPilot.Navigator.cellHeight30JavaScript
const dp = new DayPilot.Navigator("dp", {
cellHeight: 24,
// ...
});
dp.init();Angular
<daypilot-navigator [config]="config"></daypilot-navigator>config: DayPilot.NavigatorConfig = {
cellHeight: 24,
// ...
};React
<DayPilotNavigator
cellHeight={24}
{/* ... */}
/>Vue
<DayPilotNavigator
:cellHeight="24"
<!-- ... -->
/>