size String(default: "medium")

Sets a value controlling size of the component. Can also be set to the following string values:

  • "small"
  • "medium"
  • "large"
  • "none"

Example - sets the fillMode

<input id="ddt" />
<script>
$("#ddt").kendoDropDownTree({
  dataSource: ["Chai", "Chang", "Tofu"],
  size: "large"
});
</script>
In this article