Agenda for the year

Hi!

How can I show the same agenda View but for all events for that year? Maybe separeted by month if possible.

 In other words, change the date range that the agenda applies for the whole year.



1 Reply 1 reply marked as answer

RM Ruksar Moosa Sait Syncfusion Team November 16, 2022 07:28 AM UTC

Set the AgendaDaysCount property value as 365 to display all the events of the year.


<SfSchedule TValue="AppointmentData" AgendaDaysCount="365" Height="550px" @bind-SelectedDate="@CurrentDate" @bind-CurrentView="@CurrentView">

 

@code{

      DateTime CurrentDate = new DateTime(2022,1, 1);

}


Output:

Graphical user interface, text, application

Description automatically generated


Attachment: BlazorAgendaDaysCount_3d6208b4.zip

Marked as answer
Loader.
Up arrow icon