callout Boolean
(default:true)
Specifies if the Tooltip callout will be displayed.
Example - hiding the callout of the Tooltip
<span id="target" title="Tooltip content">
Some content
</span>
<script>
$(document).ready(function() {
$("#target").kendoTooltip({
callout: false
});
});
</script>