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