height Number (default: 200)

The height of the suggestion popup in pixels. The default value is 200 pixels.

Example - set the height

<input id="autocomplete" />
<script>
$("#autocomplete").kendoAutoComplete({
  height: 100,
  dataSource: {
    data: ["One", "Two", "Three", "Four", "Five", "Six", "Seven"]
  }
});
</script>
In this article