DayPilot.Scheduler.rowEmptyHeight

The rowEmptyHeight property (number) sets the height of empty rows in pixels. If specified, the JavaScript Scheduler will use this value instead of eventHeight for empty rows.

Declaration

DayPilot.Scheduler.rowEmptyHeight

Default Value

null

Notes

If specified, this property overrides eventHeight for rows without events.

Examples

JavaScript

const dp = new DayPilot.Scheduler("dp", {
  rowEmptyHeight: 10,
  // ...
});
dp.init();

Angular

<daypilot-scheduler [config]="config"></daypilot-scheduler>
config: DayPilot.SchedulerConfig = {
  rowEmptyHeight: 10,
  // ...
};

React

<DayPilotScheduler
  rowEmptyHeight={10}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :rowEmptyHeight="10"
  <!-- ... -->
/>

See Also

DayPilot.Scheduler.eventHeight

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript