Scheduler customization

Hi,

I found your great scheduler and I already integrated it into my Blazor app.
Great work, thanks.

My problem is that I want to customize it a little bit.
Is it possible to do the following things:
*) Mark the current day with a bold date number or another color or something else
*) Remove days which are not from the current Month (MonthView). If I select September I don't wnat to see days from August and October.
*) Selectively remove some buttons (next, previous, today, day, week, month)

If this 3 point are possible to implement the scheduler component will be perfect.

Thanks
Thomas

Hi @truthz03,

Welcome to the Radzen community!

At the moment the first two aren't supported. You can hide the buttons that you don't need via CSS:

.rz-scheduler-nav button {
   display: none;
}

Hi @korchev

Thanks for your answer.
Getting the source code to implement this on my own is not possible, or?
If you want I will return my changes to you that you can implement it also into the official packages.

Thanks Thomas