Change the background colour of the view holding inline appointments.

I've looked through the styles etc for the control and cannot find a way to change the colour of the view that holds the list of inline appointments. I want the dark colour to be changed to white.

1 Reply

SP Subburaj Pandian Veluchamy Syncfusion Team October 10, 2017 01:14 PM UTC

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 


Loader.
Up arrow icon