The rowCreateHeight property (number) specifies the height in pixels of the new row displayed during row creating in the JavaScript Scheduler.
DayPilot.Scheduler.rowCreateHeightnullIf not specified the default height (eventHeight + rowMarginTop + rowMarginBottom) is used.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
rowCreateHeight: 20,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
rowCreateHeight: 20,
// ...
};React
<DayPilotScheduler
rowCreateHeight={20}
{/* ... */}
/>Vue
<DayPilotScheduler
:rowCreateHeight="20"
<!-- ... -->
/>Row Creating [doc.daypilot.org]
DayPilot.Scheduler.eventHeight
DayPilot.Scheduler.rowMarginTop