Customize RadzenWeekView Title to Show Today's Date Instead of Week Range

I'm using <RadzenWeekView HeaderFormat="ddd, M/dd" /> to show the date along with the day name in each column header, and this works very nicely.

However, this creates a redundancy — the title of the RadzenWeekView already shows the date range for the week (e.g., "02/01/2026 - 02/07/2026"), which becomes repetitive when each column header already displays its own date.

Instead of the full week range, it would be more beneficial to show today's date in the title — something like "Thursday, February 5, 2026".

Is there a property like TitleFormat or TitleTemplate on RadzenWeekView that would allow this? Or what would be the recommended approach?

<RadzenScheduler @ref="scheduler"
                 TItem="CalendarAppointmentDto"
                 Data="@Appointments"
                 StartProperty="Start"
                 EndProperty="End"
                 TextProperty="Text"
                 SelectedIndex="1"
                 Style="height: 100%;"
                 SlotSelect="@OnSlotSelect"
                 AppointmentSelect="@OnAppointmentSelect"
                 AppointmentRender="@OnAppointmentRender"
                 AppointmentMove="@OnAppointmentMove"
                 LoadData="@OnLoadData"
                 TodayText="Today">
    <RadzenDayView />
    <RadzenWeekView HeaderFormat="ddd, M/dd" />
    <RadzenMonthView />
</RadzenScheduler>

Thanks in advance!

Hi @ricksmith,

To override this you need a custom view.

  1. Create a new class that inherits from RadzenWeekView e.g. MyWeekView
  2. Override its Title property.
  3. Use the custom week view instead of RadzenWeekView:
    <RadzenScheduler ... >
       <MyWeekView />
    

Worked. Thanks you sir!