I am implementing telerik's radschedular and loading resources in it with grouping functionality.
i have multiple docotrs and i want to distingvished their data by different colors.
Is there any mapping field for colors in ResourceMappingInfo class to map colors from resources object
for better understanding i m attaching some part of my code over here
For i As Integer = 0 To resourceNames.Length - 1
Resources.Add(New PanaceaBuisnessLayer.AppointmentResource(resourceNames(i), i + 1))
Resources(0).Color = Color.Black
Resources(1).Color = Color.Red
Next i
Dim resourceMappingInfo As New ResourceMappingInfo()
resourceMappingInfo.Id = "Id"
resourceMappingInfo.Name = "Name"
resourceMappingInfo.Color= ??????
dataSource.ResourceProvider.Mapping = resourceMappingInfo
dataSource.ResourceProvider.DataSource = Resources
RadSchdAppView.GroupType = GroupType.Resource
RadSchdAppView.DataSource = dataSource
i have multiple docotrs and i want to distingvished their data by different colors.
Is there any mapping field for colors in ResourceMappingInfo class to map colors from resources object
for better understanding i m attaching some part of my code over here
For i As Integer = 0 To resourceNames.Length - 1
Resources.Add(New PanaceaBuisnessLayer.AppointmentResource(resourceNames(i), i + 1))
Resources(0).Color = Color.Black
Resources(1).Color = Color.Red
Next i
Dim resourceMappingInfo As New ResourceMappingInfo()
resourceMappingInfo.Id = "Id"
resourceMappingInfo.Name = "Name"
resourceMappingInfo.Color= ??????
dataSource.ResourceProvider.Mapping = resourceMappingInfo
dataSource.ResourceProvider.DataSource = Resources
RadSchdAppView.GroupType = GroupType.Resource
RadSchdAppView.DataSource = dataSource