The progressiveRowRendering property (boolean) enables progressive row rendering of Gantt row headers.
Declaration
DayPilot.Gantt.progressiveRowRenderingDefault Value
trueNotes
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
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot