this.radTTSched.Statuses.Add(new AppointmentStatusInfo(0, "Booked", Color.Green, Color.Green, AppointmentStatusFillType.Solid));
this.radTTSched.Statuses.Add(new AppointmentStatusInfo(1, "Show", Color.Blue, Color.Blue, AppointmentStatusFillType.Solid));
this.radTTSched.Statuses.Add(new AppointmentStatusInfo(2, "No Show", Color.Red, Color.Red, AppointmentStatusFillType.Solid));
this.radTTSched.Statuses.Add(new AppointmentStatusInfo(3, "Cancel", Color.Red, Color.Red, AppointmentStatusFillType.Solid));
All colors will show correctly in my scheduler except Status = 2 for No Show. If I change this value from 2 to any other value, it works correctly. Is there something sacred about status value of 2? This is a legacy database that I am integrating with and I am not able to change that value from 2 to something else. Please help!