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