The treeIndent property (number) sets the left indent, in pixels, applied to child resource rows in the JavaScript Scheduler component.
Declaration
DayPilot.Scheduler.treeIndentDefault Value
20Examples
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
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot