DayPilot.Scheduler.rowMarginTop

The rowMarginTop property (number) specifies the height of the free space above events in each row, in pixels.

Declaration

DayPilot.Scheduler.rowMarginTop

Examples

JavaScript

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

Angular

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

React

<DayPilotScheduler
  rowMarginTop={5}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :rowMarginTop="5"
  <!-- ... -->
/>

See Also

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript