The dynamicEventRenderingMargin property (number) specifies the size of the buffer, in pixels, rendered beyond the JavaScript Scheduler viewport when progressive event rendering is enabled.
DayPilot.Scheduler.dynamicEventRenderingMargin50Use DayPilot.Scheduler.dynamicEventRenderingMarginX and DayPilot.Scheduler.dynamicEventRenderingMarginY to override the shared margin separately for horizontal and vertical directions.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
dynamicEventRenderingMargin: 200,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
dynamicEventRenderingMargin: 200,
// ...
};React
<DayPilotScheduler
dynamicEventRenderingMargin={200}
{/* ... */}
/>Vue
<DayPilotScheduler
:dynamicEventRenderingMargin="200"
<!-- ... -->
/>DayPilot.Scheduler.dynamicEventRenderingMarginX
DayPilot.Scheduler.dynamicEventRenderingMarginY
Progressive Event Rendering [doc.daypilot.org]