The rowHeaderSplitterWidth property (number) specifies the width of the active vertical splitter between row headers and the JavaScript Scheduler grid.
DayPilot.Scheduler.rowHeaderSplitterWidth3The splitter is only active when rowHeaderScrolling is enabled.
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"
<!-- ... -->
/>