itemFlow String
(default: "vertical")
Sets the position of the text label. Valid options are vertical
and horizontal
.
Example
<nav id="bottomnav"></nav>
<script>
$("#bottomnav").kendoBottomNavigation({
itemFlow: "horizontal",
items: [
{ text: "Home", icon: "home" },
{ text: "Info", icon: "info-circle" },
{ text: "Contact", icon: "envelope" }
]
});
</script>