Hi,
I am setting background color of RadScheduler's time slot based on some data source attribute.
protected void Schedule_TimeSlotCreated(object sender, TimeSlotCreatedEventArgs e)
{
................
If(condition == 1)
e.TimeSlot.Control.BackColor = Color.White;
else
e.TimeSlot.Control.BackColor = Color.Grey;
....
}
On doing so, it is breaking hover background color (especially height). now, when I hover over a timeslot, it partially highlights it as seen in the image attached. How can I give a background color to time slot and also highlight 100% width and hieght of timeslot on hover?
Thanks,
Prava
I am setting background color of RadScheduler's time slot based on some data source attribute.
protected void Schedule_TimeSlotCreated(object sender, TimeSlotCreatedEventArgs e)
{
................
If(condition == 1)
e.TimeSlot.Control.BackColor = Color.White;
else
e.TimeSlot.Control.BackColor = Color.Grey;
....
}
On doing so, it is breaking hover background color (especially height). now, when I hover over a timeslot, it partially highlights it as seen in the image attached. How can I give a background color to time slot and also highlight 100% width and hieght of timeslot on hover?
Thanks,
Prava