The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
In this article I understood how to change a day. I need to change a month/year.For example Now is July 2021.but I want to show September 2021 or September 2022 on the default.Please help me and say how can I do it.Because if I use
SSSaiGanesh Sakthivel Syncfusion Team July 30, 2021 06:43 AM UTC
Hi Maria,
Thank you for contacting Syncfusion support.
#Regarding How to display the selected date in the view
We have checked the reported query from our end. Your requirement can be achieved by using MoveToDate property in the SfCalendar. Please refer to the following code snippet for your reference.
Code Snippet
<calendar:SfCalendar x:Name="calendar"
DataSource="{Binding Appointments}"
SelectedDate="{Binding SelectedDate}"
MoveToDate="{Binding SelectedDate}">
<calendar:SfCalendar.BindingContext>
<local:ViewModel/>
</calendar:SfCalendar.BindingContext>
</calendar:SfCalendar>
We have prepared the sample and attached in the following link for your reference.