Category / Section
How to hide leading and trailing days in Xamarin.Forms Schedule (SfSchedule)
1 min read
You can hide the leading and trailing days the current month by using the PreviousMonthTextColor and NextMonthTextColor properties of MonthViewCellStyle in Xamarin.Forms SfSchedule.
XAML
You can set Transparent to PreviousMonthTextColor and CurrentMonthTextColor to hide the leading and trailing days.
<syncfusion:SfSchedule x:Name="Schedule" ScheduleView="MonthView"> <syncfusion:SfSchedule.MonthCellStyle> <syncfusion:MonthViewCellStyle PreviousMonthTextColor="Transparent" NextMonthTextColor="Transparent"/> </syncfusion:SfSchedule.MonthCellStyle> </syncfusion:SfSchedule>