Hi, I am trying to create a scheduler for tracking holidays while also including employees shifts So I decided to use the Tree timeline view.
My Questions are:
- Can I mark the different sections (etc. full day or shift C) separately
- Why is it becoming more faint as it goes down?
Here’s my code for marking:
sched.TimeSpans.Add(new DHXMarkTime() {
Day = DayOfWeek.Saturday,
CssClass = "green_section",
SpanType = DHXMarkTime.Type.Default
});
sched.TimeSpans.Add(new DHXMarkTime()
{
Day = DayOfWeek.Sunday,
CssClass = "green_section",
SpanType = DHXMarkTime.Type.Default
});