Having trouble getting help?
Contact Support
Contact Support
Change First Day Of Week in Xamarin Calendar (SfCalendar)
8 Jan 20251 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.