DayPilot.Gantt.progressiveTaskRendering

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.progressiveTaskRendering

Possible Values

  • "Progressive" - renders task boxes during scrolling.

  • "Disabled" - renders task boxes at once during init() and update().

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

DayPilot.Gantt Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript