Hi,
I have the following code :
protected void RadScheduler_AppointmentDataBound(object sender, SchedulerEventArgs e)
{
if (true)
{
e.Appointment.BackColor = = Color.Yellow;
}
else
{
e.Appointment.BackColor = = Color.Red;
}
}
that example works fine on the following views :
- Day View.
- Week View.
- Month View.
But it does not work on the Year view and the Agenda view !
So, how can i make it work ?
Best regard.