The progressiveTaskRendering property (string) controls whether task boxes are rendered progressively during scrolling or rendered all at once during init() and update().
Declaration
DayPilot.Gantt.progressiveTaskRenderingPossible Values
"Progressive"- renders task boxes during scrolling."Disabled"- renders task boxes at once duringinit()andupdate().
Default Value
"Progressive"Notes
Use DayPilot.Gantt.progressiveTaskRenderingMargin, DayPilot.Gantt.progressiveTaskRenderingCacheSweeping, and DayPilot.Gantt.progressiveTaskRenderingCacheSize to tune the rendering buffer and cleanup behavior.
Examples
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"
<!-- ... -->
/>See Also
DayPilot.Gantt.progressiveTaskRenderingMargin
DayPilot.Gantt.progressiveTaskRenderingCacheSweeping
DayPilot.Gantt.progressiveTaskRenderingCacheSize
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot