position String(default: "bottom")

The position that is relative to the target element at which the Tooltip will be shown.

The supported values are:

  • bottom
  • top
  • left
  • right
  • center

Example - setting the position of the Tooltip

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

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