DayPilot.Scheduler.rowMinHeight

The rowMinHeight property (number) sets the minimum row height, in pixels, used by the JavaScript Scheduler. See Scheduler: Row Height.

Declaration

DayPilot.Scheduler.rowMinHeight

Default Value

0

Examples

JavaScript

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

Angular

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

React

<DayPilotScheduler
  rowMinHeight={30}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :rowMinHeight="30"
  <!-- ... -->
/>

See Also

DayPilot.Scheduler.rowMarginTop

DayPilot.Scheduler.rowMarginBottom

Scheduler: Row Height

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript