The progressiveRowRendering property (boolean) enables progressive row rendering of Gantt row headers.
DayPilot.Gantt.progressiveRowRenderingtrueWhen 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.
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"
<!-- ... -->
/>Progressive Row Rendering [doc.daypilot.org]