The dynamicEventRendering property (string) controls progressive event rendering in the JavaScript Scheduler component.
DayPilot.Scheduler.dynamicEventRendering"Disabled" - all events are rendered at once.
"Progressive" - events are rendered as the user scrolls.
"Progressive"JavaScript
const dp = new DayPilot.Scheduler("dp", {
dynamicEventRendering: "Disabled",
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
dynamicEventRendering: "Disabled",
// ...
};React
<DayPilotScheduler
dynamicEventRendering="Disabled"
{/* ... */}
/>Vue
<DayPilotScheduler
dynamicEventRendering="Disabled"
<!-- ... -->
/>Progressive Event Rendering [doc.daypilot.org]