Hi Winston,
Thank you for contacting Syncfusion support.
We have checked your requirement of setting different color to Month cell Appointment indicator in Schedule Xamarin.Forms, as of now we don’t have any support to change the month cell indicator color. Your requirement can be achieved by setting Custom view to the entire month cell using OnMonthCellLoadedEvent of Schedule or setting MonthCellTemplate of Schedule MonthViewSettings.
You can refer our online user guide documentation for the same by the below link,
Using OnMonthCellLoadedEvent you can set the desired CustomView to the View argument and also get the Date, Appointment details of the particular day. Please refer the code example for the same,
[c#]
scheduler.OnMonthCellLoadedEvent += Scheduler_OnMonthCellLoadedEvent;
…
private void Scheduler_OnMonthCellLoadedEvent(object sender, MonthCellLoadedEventArgs e)
{
var Appointments = e.appointments;
var Date = e.date;
var view = e.view; // Set the required view
}
|
Please let us know, if this helpful.
Regards,
Subburaj Pandian V