warm-up and cool-down on Resource Calendar
6 years ago.
Hello,
i want to try something like this: https://code.daypilot.org/82331/javascript-scheduler-warm-up-and-cool-down-time
on the Resource Calender. Warm-Up areas should not appear from left to right but from top to down.
I tried it in many ways like that:
dp.onBeforeEventRender = function(args) {
args.e.areas = [
{
start: args.data.start,
end: args.data.start.addMinutes(40),
left:0,
right:0,
backColor: "#ccc"
}
];
}
But areas are not shown.
Thanks for your help
DayPilot