tools.tooltip String
The text which will be displayed when the end-user hovers the tool button with the mouse.
Example
<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
tools: [
{ name: "bold", tooltip: "Bold the selected text" }
]
});
</script>