Hi Uwe,
Greetings from Syncfusion support.
We have validated your reported query “How to display weekday in TimelineMonthView” at our end. We have achieved your requirement with the help of the dateheaderTemplate property of the Schedule like the below code. We have prepared a sample for your reference and it can be available below.
[Index.razor]
|
@using Syncfusion.Blazor
@using Syncfusion.Blazor.Schedule
@using System.Globalization
<SfSchedule TValue=object Height="360px">
<ScheduleTemplates>
<DateHeaderTemplate>
<div class="templatewrap">
<span>@(getDateDetails((context as TemplateContext).Date))</span>
</div>
</DateHeaderTemplate>
</ScheduleTemplates>
<ScheduleViews>
<ScheduleView Option="View.TimelineMonth"></ScheduleView>
</ScheduleViews>
</SfSchedule>
@code{
public static string getDateDetails(DateTime date)
{
return date.ToString("ddd, dd", CultureInfo.InvariantCulture);
}
} |
Kindly try the above sample and get back to us if you need any further assistance.
Regards,
Ravikumar Venkatesan