Hi David,
Thank you for contacting Syncfusion support.
Scheduler view can be customized using views property, kindly use the below code example to the restrict the views in Schedule.
<Code>
@{List<string> view = new List<string>() { "Day", "Week", "Month"};}
<ej-schedule id="Schedule1" width="100%" height="525px" current-date="new DateTime(2015, 11, 8)" views="view" current-view="Week">
<e-appointment-settings datasource="Appoint" id="Id" subject='"Subject"' start-time='"StartTime"' end-time='"EndTime"' description='"Description"' all-day='"AllDay"' recurrence='"Recurrence"' recurrence-rule='"RecurrenceRule"'>
</e-appointment-settings>
</ej-schedule>
</Code>
Regards,
Karthigeyan