Hii,
You can display working days like this...
INDEX.TS
import { Schedule, Week, WorkWeek, Month, TimelineViews } from '@syncfusion/ej2-schedule';
import { scheduleData } from './datasource.ts';
Schedule.Inject(Week, WorkWeek, Month, TimelineViews);
let scheduleObj: Schedule = new Schedule({
width: '100%',
height: '550px',
selectedDate: new Date(2018, 1, 15),
currentView: 'WorkWeek',
views: ['Week', 'WorkWeek', 'Month', 'TimelineWeek', 'TimelineWorkWeek'],
workDays: [1, 3, 5],
eventSettings: { dataSource: scheduleData }
});
scheduleObj.appendTo('#Schedule');
INDEX.HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>Working days</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<meta name="description" content="Typescript Schedule Control" />
<meta name="author" content="Syncfusion" />
<link rel='nofollow' href="index.css" rel="stylesheet" />
<link rel='nofollow' href="//cdn.syncfusion.com/ej2/ej2-base/styles/material.css" rel="stylesheet" />
<link rel='nofollow' href="//cdn.syncfusion.com/ej2/ej2-buttons/styles/material.css" rel="stylesheet" />
<link rel='nofollow' href="//cdn.syncfusion.com/ej2/ej2-calendars/styles/material.css" rel="stylesheet" />
<link rel='nofollow' href="//cdn.syncfusion.com/ej2/ej2-dropdowns/styles/material.css" rel="stylesheet" />
<link rel='nofollow' href="//cdn.syncfusion.com/ej2/ej2-inputs/styles/material.css" rel="stylesheet" />
<link rel='nofollow' href="//cdn.syncfusion.com/ej2/ej2-navigations/styles/material.css" rel="stylesheet" />
<link rel='nofollow' href="//cdn.syncfusion.com/ej2/ej2-popups/styles/material.css" rel="stylesheet" />
<link rel='nofollow' href="//cdn.syncfusion.com/ej2/ej2-schedule/styles/material.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js" type="text/javascript"></script>
<script src="systemjs.config.js" type="text/javascript"></script>
</head>
<body>
<div id='loader'>LOADING....</div>
<div id='container'>
<div id="Schedule"></div>
</div>
</body>
</html>
You can restrict/allocate certain month cells as blackout days using MonthBlockOutDays of schedule.
schedule.MonthBlockOutDates.Add(new DateTime(2020, 1, 3));
schedule.MonthBlockOutDates.Add(new DateTime(2020, 1, 19));
schedule.MonthBlockOutDates.Add(new DateTime(2020, 1, 21));
schedule.MonthBlockOutDates.Add(new DateTime(2020, 1, 22));
schedule.MonthBlockOutDates.Add(new DateTime(2020, 1, 24));