DayPilot.Gantt.progressiveTaskRenderingCacheSweeping

The progressiveTaskRenderingCacheSweeping property (boolean) controls whether already rendered task boxes outside the Gantt viewport plus buffer are removed from the DOM.

Declaration

DayPilot.Gantt.progressiveTaskRenderingCacheSweeping

Default Value

false

Notes

Examples

JavaScript

const gantt = new DayPilot.Gantt("dp", {
  progressiveTaskRenderingCacheSweeping: true,
  progressiveTaskRenderingCacheSize: 500,
  // ...
});
gantt.init();

Angular

<daypilot-gantt [config]="config"></daypilot-gantt>
config: DayPilot.GanttConfig = {
  progressiveTaskRenderingCacheSweeping: true,
  progressiveTaskRenderingCacheSize: 500,
  // ...
};

React

<DayPilotGantt
  progressiveTaskRenderingCacheSweeping={true}
  progressiveTaskRenderingCacheSize={500}
  {/* ... */}
/>

Vue

<DayPilotGantt
  :progressiveTaskRenderingCacheSweeping="true"
  :progressiveTaskRenderingCacheSize="500"
  <!-- ... -->
/>

See Also

DayPilot.Gantt.progressiveTaskRenderingCacheSize

DayPilot.Gantt.progressiveTaskRenderingMargin

DayPilot.Gantt.progressiveTaskRendering

DayPilot.Gantt Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript