size String (default: 'medium')

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

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

Example

<input id="switch" />
<script>
$("#switch").kendoSwitch({
    size: "large"
});
</script>
In this article