How to customize the visible days count in WinUI Scheduler day view (Calendar)
Customize the schedule Day view day’s count by setting the DaysCount property of the DaysViewSettings in the WinUI Scheduler.
XAML
The DaysCount property in DaysViewSettings is only applicable for the Day view. The default value of this property is 1.
<Grid x:Name="grid"> <syncfusion:SfScheduler x:Name="scheduler" ViewType="Day" > <syncfusion:SfScheduler.DaysViewSettings> <syncfusion:DaysViewSettings DaysCount="4"/> </syncfusion:SfScheduler.DaysViewSettings> </syncfusion:SfScheduler> </Grid>
