items.showText String (default: "both")

Specifies where the text will be displayed. Possible values are: "toolbar", "overflow" or "both" (default).

Example

<div id="toolbar"></div>

<script>
    $("#toolbar").kendoToolBar({
        items: [
            { type: "button", text: "Foo", icon: "check", showText: "overflow" }
        ]
    });
</script>
In this article