DayPilot.Scheduler.rowCreateHeight

The rowCreateHeight property (number) specifies the height in pixels of the new row displayed during row creating in the JavaScript Scheduler.

Declaration

DayPilot.Scheduler.rowCreateHeight

Default Value

null

Notes

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

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript