width Number(default: Infinity)

The width (in pixels) of the Popover.

Example - setting the width of the Popover

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

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