messages.toggleButton String (default: "Toggle toolbar")

The title and the aria-label attribute of the toggle toolbar button.

Example

<div id="chat"></div>
<script>
$("#chat").kendoChat({
    messages: {
        toggleButton: "Show/hide toolbar"
    },
    toolbar: {
        toggleable: true,
        buttons: [
            {name: "restart", iconClass: "k-icon k-i-reload"}
        ]
    },
}).data("kendoChat");
</script>
In this article