Show Dates of Other Months in Blazor Calendar Component
26 Dec 20231 minute to read
The following code demonstrates how to show dates of other months. Using the styles below, you can bring the dates of other months to visibility from its hidden state.
@using Syncfusion.Blazor.Calendars
<SfCalendar TValue="DateTime?"></SfCalendar>
<style>
.e-control.e-calendar {
max-width: 260px;
}
.e-calendar .e-content tr.e-month-hide,
.e-calendar .e-content td.e-other-month>span.e-day {
display: block;
}
.e-calendar .e-content td.e-month-hide,
.e-calendar .e-content td.e-other-month {
pointer-events: auto;
touch-action: auto;
}
</style>