New to Kendo UI for Angular? Start a free 30-day trial

Hiding the All Day Slot in the Scheduler

Environment

ProductProgress® Kendo UI® for Angular Scheduler

Description

How can I hide the All Day row in the Kendo UI for Angular Scheduler?

Solution

Use the following CSS snippet:

.hide-all-day .k-scheduler-table tr:nth-of-type(0),
.k-scheduler-times-all-day,
.k-scheduler-table.k-scheduler-header-all-day {
  display: none;
}

The following example demonstrates the full implementation of the suggested approach.

Example
View Source
Change Theme:

Notes

To apply the style locally, set encapsulation to ViewEncapsulation.None.

In this article

Not finding the help you need?