Hi Steve,
Thank you for contacting Syncfusion support.
Your requirement of customizing the Month Inline view appearance in Xamarin Forms can be achieved using MonthInlineViewStyle property of MonthInlineLoadedEventArgs argument in OnMonthInlineLoadedEvent of Schedule, please refer the below code example.
|
[c#]
Schedule.OnMonthInlineLoadedEvent += Schedule_OnMonthInlineLoadedEvent;
…
void Schedule_OnMonthInlineLoadedEvent(object sender, MonthInlineLoadedEventArgs e) { MonthInlineViewStyle monthInlineViewStyle = new MonthInlineViewStyle(); monthInlineViewStyle.BackgroundColor = Color.Blue; e.monthInlineViewStyle = monthInlineViewStyle; }
|
You can also refer our online user guide documentation for the same by the below link,
Please let us know, if you have any query on this.
Regards,
Subburaj Pandian V