toolbar.items.textString
Sets the text of the button.
Example
<div id="imageEditor"></div>
<script>
$("#imageEditor").kendoImageEditor({
toolbar: {
items: [
{ text: "My Custom Tool", click: function() { console.log("Custom tool clicked"); } }
]
}
});
</script>
In this article