DayPilot.Scheduler.rowHeaderSplitterWidth

The rowHeaderSplitterWidth property (number) specifies the width of the active vertical splitter between row headers and the JavaScript Scheduler grid.

Declaration

DayPilot.Scheduler.rowHeaderSplitterWidth

Default Value

3

Notes

The splitter is only active when rowHeaderScrolling is enabled.

Examples

JavaScript

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

Angular

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

React

<DayPilotScheduler
  rowHeaderSplitterWidth={2}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :rowHeaderSplitterWidth="2"
  <!-- ... -->
/>

See Also

DayPilot.Scheduler.rowHeaderScrolling

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript