The rowHeaderSplitterWidth property (number) specifies the width of the active vertical splitter between row headers and the JavaScript Scheduler grid.
Declaration
DayPilot.Scheduler.rowHeaderSplitterWidthDefault Value
3Notes
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
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot