DayPilot.Gantt.scrollDelayCells

The scrollDelayCells property (number) specifies the debounce delay, in milliseconds, applied by the JavaScript Gantt Chart to cell rendering during scrolling.

When set to 0, cells are rendered synchronously.

Declaration

DayPilot.Gantt.scrollDelayCells

Default Value

0

Examples

JavaScript

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

Angular

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

React

<DayPilotGantt
  scrollDelayCells={50}
  {/* ... */}
/>

Vue

<DayPilotGantt
  :scrollDelayCells="50"
  <!-- ... -->
/>

See Also

Scrolling Performance [doc.daypilot.org]

DayPilot.Gantt Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript