The rowHeaderWidthMarginRight property (number) specifies the inner margin applied when calculating the column width during row header width auto-fit.
DayPilot.Scheduler.rowHeaderWidthMarginRightJavaScript
const dp = new DayPilot.Scheduler("dp", {
rowHeaderWidthMarginRight: 5,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
rowHeaderWidthMarginRight: 5,
// ...
};React
<DayPilotScheduler
rowHeaderWidthMarginRight={5}
{/* ... */}
/>Vue
<DayPilotScheduler
:rowHeaderWidthMarginRight="5"
<!-- ... -->
/>Row Header Width Auto-Fit [doc.daypilot.org]