Is there a way to customize the resources appearence in the scheduler?
In detail, I would like to put some kind of style on the parent resource cells (the ones with children.Count==0), like the background color or some text propriety (like "bold").
I've tried to implement the feature using the BeforeResHeaderRender event, but it doesn't work:
Resource r = DayPilotScheduler1.Resources.FindByValue(e.Value);
if (r.Children.Count > 0)
e.BackgroundColor = "#73B1B7";
Thank you!