New to Kendo UI for Angular? Start a free 30-day trial
Hide Scheduler Toolbar and Footer
Updated on Feb 24, 2026
Environment
| Product | Progress® Kendo UI for Scheduler |
Description
How can I hide the Scheduler toolbar and footer elements?
Solution
To hide the Scheduler toolbar and footer:
-
Hide the footer by setting the
showFooterproperty tofalse:html<kendo-scheduler [showFooter]="false"> <!-- Scheduler views --> </kendo-scheduler> -
Hide the toolbar by using custom CSS styles:
css.k-scheduler .k-scheduler-toolbar { display: none; }
The following example demonstrates the suggested approach in action.
Change Theme
Theme
Loading ...