DayPilot.Gantt.progressiveRowRendering

The progressiveRowRendering property (boolean) enables progressive row rendering of Gantt row headers.

Declaration

DayPilot.Gantt.progressiveRowRendering

Default Value

true

Notes

When progressive row rendering is enabled, the Gantt chart renders row headers only for the current viewport, plus the buffer defined using DayPilot.Gantt.progressiveRowRenderingPreload in both directions.

Examples

JavaScript

const gantt = new DayPilot.Gantt("dp", {
  progressiveRowRendering: false,
  // ...
});
gantt.init();

Angular

<daypilot-gantt [config]="config"></daypilot-gantt>
config: DayPilot.GanttConfig = {
  progressiveRowRendering: false,
  // ...
};

React

<DayPilotGantt
  progressiveRowRendering={false}
  {/* ... */}
/>

Vue

<DayPilotGantt
  :progressiveRowRendering="false"
  <!-- ... -->
/>

See Also

Progressive Row Rendering [doc.daypilot.org]

DayPilot.Gantt.progressiveRowRenderingPreload

DayPilot.Gantt Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript