The treeImageWidth property (number) specifies the resource tree node icon width (in pixels).
Available since version 2018.3.3417.
Declaration
DayPilot.Scheduler.treeImageWidthDefault Value
10Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
treeImageWidth: 15,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
treeImageWidth: 15,
// ...
};React
<DayPilotScheduler
treeImageWidth={15}
{/* ... */}
/>Vue
<DayPilotScheduler
:treeImageWidth="15"
<!-- ... -->
/>See Also
DayPilot.Scheduler.treeImageHeight
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot