DayPilot.Scheduler.treeAnimation

The treeAnimation property (boolean) enables the Scheduler resource tree children expand/collapse animation.

Available since 2019.1.3572.

Declaration

DayPilot.Scheduler.treeAnimation

Default Value

true

Notes

You may want to disable the animation for heavy Scheduler views with lots of events or a large viewport.

Examples

JavaScript

const dp = new DayPilot.Scheduler("dp", {
  treeAnimation: false,
  // ...
});
dp.init();

Angular

<daypilot-scheduler [config]="config"></daypilot-scheduler>
config: DayPilot.SchedulerConfig = {
  treeAnimation: false,
  // ...
};

React

<DayPilotScheduler
  treeAnimation={false}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :treeAnimation="false"
  <!-- ... -->
/>

See Also

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript