toolbar.buttons.text String
Defines the text that will be used for the title of the icon button.
Example
<div id="chat"></div>
<script>
$("#chat").kendoChat({
toolbar: {
buttons: [
{ name: "ButtonA", text: "ButtonA", icon: "plus" },
{ name: "ButtonB", text: "ButtonB", icon: "heart" }
]
}
});
</script>