Answer:
We can ignore the whitespace of an appointment by enabling the “IgnoreWhiteSpace” property and which can be defined inside the element of ScheduleEventSettings. Refer to the code snippet below.
<EjsSchedule TValue="AppointmentData" Height="550px" SelectedDate="@(new DateTime(2020, 1, 1))" CurrentView="View.TimelineMonth" RowAutoHeight="true">
<ScheduleGroup Resources="@Resources">ScheduleGroup>
<ScheduleViews>
<ScheduleView Option="View.Week">ScheduleView>
<ScheduleView Option="View.TimelineDay">ScheduleView>
<ScheduleView Option="View.TimelineWeek">ScheduleView>
<ScheduleView Option="View.TimelineMonth" AllowVirtualScrolling="true">ScheduleView>
ScheduleViews>
<ScheduleEventSettings DataSource="@DataSource" IgnoreWhitespace="true">ScheduleEventSettings> // Ignore the
whitespace by enabling this property
...
EjsSchedule> |
|
Note: “IgnoreWhiteSpace” property supports the
virtual scrolling enabled cases.
|
Find the sample for to remove the bottom space of each resource row in Scheduler from
here.