width Number(default: Infinity)

The width (in pixels) of the Tooltip.

Example - setting the width of the Tooltip

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

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