AppBarComponent
Represents the Kendo UI AppBar component for Angular. Used to display information, actions, branding titles and additional navigation on the current screen.
Selector
kendo-appbar
Export Name
Accessible in templates as #kendoAppBarInstance="kendoAppBar"
Inputs
position
Specifies the position of the AppBar (see example).
The possible values are:
top
(Default)—Positions the AppBar at the top of the content. Setting theposition
property totop
requires adding the Appbar component before the page content. The position property applies CSStop: 0
style infixed mode
and also adds abox-shadow
to the bottom of the AppBar.bottom
—Positions the AppBar at the bottom of the content. Setting theposition
property tobottom
requires adding the Appbar component after the page content. The position property applies CSSbottom: 0
style infixed mode
and also adds abox-shadow
to the top of the AppBar.
positionMode
Specifies the positionMode of the AppBar (see example).
- The possible values are:
static
(Default)—Does not position the AppBar in any special way. It is positioned according to the normal flow of the page.sticky
—Positions the AppBar based on the user's scroll position. A sticky element toggles between static and fixed CSSposition
property, depending on the scroll position.fixed
—Positions the AppBar relative to the viewport. It always stays in the same place even if the page is scrolled.
themeColor
Specifies the theme color of the AppBar. The theme color will be applied as background color of the component.
- The possible values are:
light
(Default)—Applies coloring based on light theme color.dark
—Applies coloring based on dark theme color.inherit
— Applies inherited coloring value.