The rowCreateHeight property (number) specifies the height in pixels of the new row displayed during row creating in the JavaScript Scheduler.
Declaration
DayPilot.Scheduler.rowCreateHeightDefault Value
nullNotes
If not specified the default height (eventHeight + rowMarginTop + rowMarginBottom) is used.
Examples
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"
<!-- ... -->
/>See Also
Row Creating [doc.daypilot.org]
DayPilot.Scheduler.eventHeight
DayPilot.Scheduler.rowMarginTop
DayPilot.Scheduler.rowMarginBottom
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot