diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/app/app.component.css b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/app/app.component.css
index 461de2f87473..75eb7273ef59 100644
--- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/app/app.component.css
+++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/app/app.component.css
@@ -1,3 +1,7 @@
+::ng-deep .dx-scheduler-timeline .dx-scheduler-cell-sizes-horizontal {
+ width: 100px;
+}
+
::ng-deep .dx-scheduler-appointment {
color: #000;
font-weight: 500;
diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/React/styles.css b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/React/styles.css
index e3d73f429139..f9853cc68495 100644
--- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/React/styles.css
+++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/React/styles.css
@@ -1,3 +1,7 @@
+.dx-scheduler-timeline .dx-scheduler-cell-sizes-horizontal {
+ width: 100px;
+}
+
.dx-scheduler-appointment {
color: #000;
font-weight: 500;
diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/ReactJs/styles.css b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/ReactJs/styles.css
index e3d73f429139..f9853cc68495 100644
--- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/ReactJs/styles.css
+++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/ReactJs/styles.css
@@ -1,3 +1,7 @@
+.dx-scheduler-timeline .dx-scheduler-cell-sizes-horizontal {
+ width: 100px;
+}
+
.dx-scheduler-appointment {
color: #000;
font-weight: 500;
diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Vue/App.vue b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Vue/App.vue
index df34979876c3..922ef39e7bc8 100644
--- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Vue/App.vue
+++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Vue/App.vue
@@ -92,6 +92,10 @@ function onAppointmentDblClick(e: DxSchedulerTypes.AppointmentDblClickEvent) {
diff --git a/apps/demos/Demos/Scheduler/Timelines/jQuery/index.html b/apps/demos/Demos/Scheduler/Timelines/jQuery/index.html
index 454e7dcbb1b3..1248636ce82c 100644
--- a/apps/demos/Demos/Scheduler/Timelines/jQuery/index.html
+++ b/apps/demos/Demos/Scheduler/Timelines/jQuery/index.html
@@ -10,6 +10,7 @@
+
diff --git a/apps/demos/Demos/Scheduler/Timelines/jQuery/styles.css b/apps/demos/Demos/Scheduler/Timelines/jQuery/styles.css
new file mode 100644
index 000000000000..241ae31e69f5
--- /dev/null
+++ b/apps/demos/Demos/Scheduler/Timelines/jQuery/styles.css
@@ -0,0 +1,5 @@
+.dx-scheduler-timeline-day .dx-scheduler-cell-sizes-horizontal,
+.dx-scheduler-timeline-week .dx-scheduler-cell-sizes-horizontal,
+.dx-scheduler-timeline-work-week .dx-scheduler-cell-sizes-horizontal {
+ width: 100px;
+}
diff --git a/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/app/app.component.css b/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/app/app.component.css
index 65e66700b6be..21bf31a684e2 100644
--- a/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/app/app.component.css
+++ b/apps/demos/Demos/Scheduler/VirtualScrolling/Angular/app/app.component.css
@@ -6,5 +6,5 @@
::ng-deep .dx-scheduler-timeline .dx-scheduler-date-table .dx-scheduler-cell-sizes-horizontal,
::ng-deep .dx-scheduler-timeline .dx-scheduler-header-panel .dx-scheduler-cell-sizes-horizontal,
::ng-deep .dx-scheduler-date-table .dx-scheduler-cell-sizes-horizontal {
- width: 150px;
+ width: 100px;
}
diff --git a/apps/demos/Demos/Scheduler/VirtualScrolling/React/styles.css b/apps/demos/Demos/Scheduler/VirtualScrolling/React/styles.css
index 0cd27251c611..6020d2fad8be 100644
--- a/apps/demos/Demos/Scheduler/VirtualScrolling/React/styles.css
+++ b/apps/demos/Demos/Scheduler/VirtualScrolling/React/styles.css
@@ -3,5 +3,5 @@
}
#scheduler .dx-scheduler-cell-sizes-horizontal {
- width: 150px;
+ width: 100px;
}
diff --git a/apps/demos/Demos/Scheduler/VirtualScrolling/ReactJs/styles.css b/apps/demos/Demos/Scheduler/VirtualScrolling/ReactJs/styles.css
index 0cd27251c611..6020d2fad8be 100644
--- a/apps/demos/Demos/Scheduler/VirtualScrolling/ReactJs/styles.css
+++ b/apps/demos/Demos/Scheduler/VirtualScrolling/ReactJs/styles.css
@@ -3,5 +3,5 @@
}
#scheduler .dx-scheduler-cell-sizes-horizontal {
- width: 150px;
+ width: 100px;
}
diff --git a/apps/demos/Demos/Scheduler/VirtualScrolling/Vue/styles.css b/apps/demos/Demos/Scheduler/VirtualScrolling/Vue/styles.css
index 0cd27251c611..6020d2fad8be 100644
--- a/apps/demos/Demos/Scheduler/VirtualScrolling/Vue/styles.css
+++ b/apps/demos/Demos/Scheduler/VirtualScrolling/Vue/styles.css
@@ -3,5 +3,5 @@
}
#scheduler .dx-scheduler-cell-sizes-horizontal {
- width: 150px;
+ width: 100px;
}
diff --git a/apps/demos/Demos/Scheduler/VirtualScrolling/jQuery/styles.css b/apps/demos/Demos/Scheduler/VirtualScrolling/jQuery/styles.css
index 0cd27251c611..6020d2fad8be 100644
--- a/apps/demos/Demos/Scheduler/VirtualScrolling/jQuery/styles.css
+++ b/apps/demos/Demos/Scheduler/VirtualScrolling/jQuery/styles.css
@@ -3,5 +3,5 @@
}
#scheduler .dx-scheduler-cell-sizes-horizontal {
- width: 150px;
+ width: 100px;
}
diff --git a/apps/demos/testing/etalons/Scheduler-VirtualScrolling (fluent.blue.light).png b/apps/demos/testing/etalons/Scheduler-VirtualScrolling (fluent.blue.light).png
index 7f7c17de3b9c..892a1b126c8f 100644
Binary files a/apps/demos/testing/etalons/Scheduler-VirtualScrolling (fluent.blue.light).png and b/apps/demos/testing/etalons/Scheduler-VirtualScrolling (fluent.blue.light).png differ
diff --git a/apps/demos/testing/etalons/Scheduler-VirtualScrolling (material.blue.light).png b/apps/demos/testing/etalons/Scheduler-VirtualScrolling (material.blue.light).png
index 648d0931bd6f..0893810a7d1d 100644
Binary files a/apps/demos/testing/etalons/Scheduler-VirtualScrolling (material.blue.light).png and b/apps/demos/testing/etalons/Scheduler-VirtualScrolling (material.blue.light).png differ