Change First Day Of Week in Xamarin Calendar (SfCalendar)

12 May 20211 minute to read

By default, the starting day will be taken from the device culture. This can be modified using FirstDayofWeek property. Changing the first day of week will be applied to both month and year view.

<syncfusion:SfCalendar  x:Name="calendar" FirstDayofWeek="2"/>
SfCalendar  calendar = new SfCalendar();
calendar.FirstDayofWeek= 2;
this.Content = calendar;

NOTE

The value will be provided as integers starting from 0 as Sunday.

FirstDayofWeek support in Xamarin.Forms Calendar