How to format the Scheduler view (Calendar) time slot label in WinUI?
Customize the schedule view label by using the TimeRulerFormat property in each Schedule view in the WinUI Calendar.
XAML
Create the WinUI Scheduler and set the ViewType as TimelineDay.
<scheduler:SfScheduler x:Name="Schedule" ViewType="TimelineDay"> </scheduler:SfScheduler>
XAML
Customize the TimelineView label by setting the TimeRulerFormat property of the TimelineViewSettings.
<scheduler:SfScheduler.TimelineViewSettings> <scheduler:TimelineViewSettings TimeRulerFormat="hh:mm"> </scheduler:TimelineViewSettings> </scheduler:SfScheduler.TimelineViewSettings>
XAML
Customize the WeekView, DayView, and WorkWeekView label by setting the TimeRulerFormat property of the DayViewSettings.
<scheduler:SfScheduler.DaysViewSettings> <scheduler:DaysViewSettings TimeRulerFormat="hh:mm"> </scheduler:DaysViewSettings> </scheduler:SfScheduler.DaysViewSettings>
Take a moment to pursue the documentation. You can also find the options about the Timeline Views.
Conclusion
I hope you enjoyed learning about how to format the Scheduler view (Calendar) time slot label in WinUI.
You can refer to our WinUI Calendar feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WinUI Calendar example to understand how to create and manipulate data.
For current customers, you can check out our Document Processing Libraries from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-trac, or feedback portal. We are always happy to assist you!