height Number(default: Infinity)

The height (in pixels) of the Tooltip.

Example - setting the height of the Tooltip

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

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