Hi,
When you create calendar groups each calendar group is created with a unique colour, is there a way to switch this off and have them all one colour. I am using the infragistics metro theme.
Any help would be appreciated.
Hello Anne,
Thank you for posting to our community!
When a specific color should be used, the BaseColor property of the ResourceCalendar could be set. This property is used to determine the color of the group. In order to use the same color BaseColor property should be set for each calendar.
Another approach would be to use the CustomScheduleColorScheme. It is derived CalendarColorScheme class and provides a way to control the colors without deriving a class. The following code snippet shows how this could be used to set red color as BaseColor in xaml:
<ig:XamScheduleDataManager.ColorScheme>
<ig:CustomScheduleColorScheme>
<ig:CustomScheduleColorScheme.CustomBaseColors>
<Color A="255" R="255" G="0" B="0"/>
</ig:CustomScheduleColorScheme.CustomBaseColors>
</ig:CustomScheduleColorScheme>
</ig:XamScheduleDataManager.ColorScheme>
Please feel free to let me know if you have any other questions.
I am just checking if my last reply was helpful for you.
If you require any further assistance, please do not hesitate to ask.