diff --git a/apps/demos/Demos/Scheduler/Overview/Angular/app/app.service.ts b/apps/demos/Demos/Scheduler/Overview/Angular/app/app.service.ts
index ccb593f1e824..6a0b62221343 100644
--- a/apps/demos/Demos/Scheduler/Overview/Angular/app/app.service.ts
+++ b/apps/demos/Demos/Scheduler/Overview/Angular/app/app.service.ts
@@ -27,15 +27,15 @@ export class Data {
const employees: Employee[] = [{
text: 'John Heart',
id: 1,
- color: '#56ca85',
- avatar: '../../../../images/gym/coach-man.png',
+ color: 'var(--background-color-1)',
+ avatar: '../../../../images/employees/19.png',
age: 27,
discipline: 'ABS, Fitball, StepFit',
}, {
- text: 'Sandra Johnson',
+ text: 'Greta Sims',
id: 2,
- color: '#ff9747',
- avatar: '../../../../images/gym/coach-woman.png',
+ color: 'var(--background-color-2)',
+ avatar: '../../../../images/employees/31.png',
age: 25,
discipline: 'ABS, Fitball, StepFit',
}];
diff --git a/apps/demos/Demos/Scheduler/Overview/React/App.tsx b/apps/demos/Demos/Scheduler/Overview/React/App.tsx
index efb027610670..87977bb0326e 100644
--- a/apps/demos/Demos/Scheduler/Overview/React/App.tsx
+++ b/apps/demos/Demos/Scheduler/Overview/React/App.tsx
@@ -20,7 +20,7 @@ const App = () => (
views={views}
defaultCurrentView="month"
defaultCurrentDate={currentDate}
- height={600}
+ height={710}
showAllDayPanel={true}
firstDayOfWeek={1}
startDayHour={8}
diff --git a/apps/demos/Demos/Scheduler/Overview/React/ResourceCell.tsx b/apps/demos/Demos/Scheduler/Overview/React/ResourceCell.tsx
index 2ea79a94aa97..99f4f0595e21 100644
--- a/apps/demos/Demos/Scheduler/Overview/React/ResourceCell.tsx
+++ b/apps/demos/Demos/Scheduler/Overview/React/ResourceCell.tsx
@@ -12,7 +12,7 @@ const ResourceCell = (props: ResourceCellProps) => {
{text}
-
+
(
views={views}
defaultCurrentView="month"
defaultCurrentDate={currentDate}
- height={600}
+ height={710}
showAllDayPanel={true}
firstDayOfWeek={1}
startDayHour={8}
diff --git a/apps/demos/Demos/Scheduler/Overview/ReactJs/ResourceCell.js b/apps/demos/Demos/Scheduler/Overview/ReactJs/ResourceCell.js
index 61681cc2fceb..6f080eb30b8a 100644
--- a/apps/demos/Demos/Scheduler/Overview/ReactJs/ResourceCell.js
+++ b/apps/demos/Demos/Scheduler/Overview/ReactJs/ResourceCell.js
@@ -16,7 +16,10 @@ const ResourceCell = (props) => {
>
{text}
-
+
diff --git a/apps/demos/Demos/Scheduler/Overview/Vue/DataCell.vue b/apps/demos/Demos/Scheduler/Overview/Vue/DataCell.vue
index c1b31e2ec7aa..c3e656a2ff4f 100644
--- a/apps/demos/Demos/Scheduler/Overview/Vue/DataCell.vue
+++ b/apps/demos/Demos/Scheduler/Overview/Vue/DataCell.vue
@@ -43,36 +43,41 @@ function getCurrentTraining(date, employeeID) {
diff --git a/apps/demos/Demos/Scheduler/Overview/Vue/ResourceCell.vue b/apps/demos/Demos/Scheduler/Overview/Vue/ResourceCell.vue
index 13e00db3a192..e2d3b3ca4ef8 100644
--- a/apps/demos/Demos/Scheduler/Overview/Vue/ResourceCell.vue
+++ b/apps/demos/Demos/Scheduler/Overview/Vue/ResourceCell.vue
@@ -6,7 +6,7 @@
>
{{ employee.text }}
-