offset Number(default: 0)

Specifies the offset (in pixels) between the Popover and the anchor. The offset is rendered from the callout arrow.

Example - setting the Popover offset

<span id="target">
  Some content
</span>

<script>
  $(document).ready(function() {
    $("#target").kendoPopover({
      template: "Content description",
      offset: 10
    });
  });
</script>
In this article