DayPilot.Scheduler.treeIndent

The treeIndent property (number) sets the left indent, in pixels, applied to child resource rows in the JavaScript Scheduler component.

Declaration

DayPilot.Scheduler.treeIndent

Default Value

20

Examples

JavaScript

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

Angular

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

React

<DayPilotScheduler
  treeIndent={30}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :treeIndent="30"
  <!-- ... -->
/>

See Also

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript