Hi Yordan,
You can set the background
color of the specific group by overriding the Css for the GroupIndex in OnRenderCell
method like below code snippet.
|
public void OnRenderCell(RenderCellEventArgs args)
{
if (args.GroupIndex == 1)
{
args.CssClasses = new List<string>(CellCustomClass1);
}
else
{
args.CssClasses = new List<string>(CellCustomClass);
}
}
|
|
<style>
.e-schedule .e-month-view .cell-custom-class {
background: #849aae !important;
}
.e-schedule .e-month-view .cell-custom-class1 {
background: #e8d485 !important;
}
</style>
|
Kindly try the attached sample
and let us know if this meets your requirement.
Regards,
Ruksar Moosa Sait
Attachment:
Background_color_for_specific_group_f724eabf.zip