offset Number(default: 0)

Specifies the offset (in pixels) between the Tooltip and the anchor. If the callout property is set to true, the offset is rendered from the callout arrow. If the callout property is set to false, the offset is rendered from the content of the Tooltip.

Example - setting the Tooltip offset

<span id="target" title="Tooltip long content">
  Some content
</span>

<script>
  $(document).ready(function() {
    $("#target").kendoTooltip({
      offset: 10
    });
  });
</script>
In this article