Thank you for contacting Syncfusion support.
We can hide the Time slot using TimeScale property for which the default value will be true. When the property value is set to false then default time slot will be hidden within the Schedule and for the same we have prepared the below sample. Kindly refer the below code example used in the sample.
<Code>
@(Html.EJ().Schedule("Schedule1")
.Width("100%")
.Height("525px")
.Orientation(Orientation.Horizontal)
.TimeZone("UTC -05:00")
.CurrentDate(new DateTime(2015, 9, 15))
.CurrentView(CurrentView.Workweek)
.TimeScale(f => f.Enable(false))
-----------
-----------
)
</Code>
Regards,
Karthigeyan