DayPilot.Scheduler.rowHeaderWidth

The rowHeaderWidth property (number) sets the initial width of the JavaScript Scheduler row header in pixels.

Declaration

DayPilot.Scheduler.rowHeaderWidth

Default Value

80

Notes

Examples

JavaScript

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

Angular

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

React

<DayPilotScheduler
  rowHeaderWidth={120}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :rowHeaderWidth="120"
  <!-- ... -->
/>

See Also

Row Header Width Auto-Fit [doc.daypilot.org]

Row Header Scrolling [doc.daypilot.org]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript