The progressiveTaskRendering property (string) controls whether task boxes are rendered progressively during scrolling or rendered all at once during init() and update().
DayPilot.Gantt.progressiveTaskRendering"Progressive" - renders task boxes during scrolling.
"Disabled" - renders task boxes at once during init() and update().
"Progressive"Use DayPilot.Gantt.progressiveTaskRenderingMargin, DayPilot.Gantt.progressiveTaskRenderingCacheSweeping, and DayPilot.Gantt.progressiveTaskRenderingCacheSize to tune the rendering buffer and cleanup behavior.
JavaScript
const gantt = new DayPilot.Gantt("dp", {
progressiveTaskRendering: "Disabled",
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
progressiveTaskRendering: "Disabled",
// ...
};React
<DayPilotGantt
progressiveTaskRendering="Disabled"
{/* ... */}
/>Vue
<DayPilotGantt
progressiveTaskRendering="Disabled"
<!-- ... -->
/>DayPilot.Gantt.progressiveTaskRenderingMargin
DayPilot.Gantt.progressiveTaskRenderingCacheSweeping