The treeImageMarginLeft property (number) sets the left margin of the tree node image in pixels.
Declaration
DayPilot.Scheduler.treeImageMarginLeftDefault Value
2Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
treeImageMarginLeft: 5,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
treeImageMarginLeft: 5,
// ...
};React
<DayPilotScheduler
treeImageMarginLeft={5}
{/* ... */}
/>Vue
<DayPilotScheduler
:treeImageMarginLeft="5"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot