The rowsPerMonth property (string) defines how many rows should be displayed in each month table.
DayPilot.Navigator.rowsPerMonth"Six" - always shows 6 rows so all displayed months have the same height.
"Auto" - the number of rows depends on the number of days and can be 4, 5, or 6.
"Six"JavaScript
const dp = new DayPilot.Navigator("dp", {
rowsPerMonth: "Auto",
// ...
});
dp.init();Angular
<daypilot-navigator [config]="config"></daypilot-navigator>config: DayPilot.NavigatorConfig = {
rowsPerMonth: "Auto",
// ...
};React
<DayPilotNavigator
rowsPerMonth="Auto"
{/* ... */}
/>Vue
<DayPilotNavigator
rowsPerMonth="Auto"
<!-- ... -->
/>