How do we change the font of a resource
http://www.telerik.com/help/winforms/scheduler-views-grouping-by-resources.html
This page details only colours not the font
Particularly the Header part not the diary part
Hmm got it sorted
http://www.telerik.com/help/winforms/scheduler-views-grouping-by-resources.html
This page details only colours not the font
Particularly the Header part not the diary part
Hmm got it sorted
If
rsScheduler.GroupType = GroupType.Resource
And
rsScheduler.ActiveViewType = SchedulerViewType.Day
Then
Dim
element
As
SchedulerDayViewGroupedByResourceElement = TryCast(
Me
.rsScheduler.SchedulerElement.ViewElement, SchedulerDayViewGroupedByResourceElement)
element.Font =
New
Font(element.Font.FontFamily, element.Font.SizeInPoints, FontStyle.Regular)
element.ForeColor = Color.Black
End
If