height Number(default: Infinity)

The height (in pixels) of the Popover.

Example - setting the height of the Popover

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

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