sizeString(default: undefined)
Sets a value controlling the size of the component. When undefined (the default), the theme controls the default size. Can also be set to the following string values:
- "small"
- "medium"
- "large"
Example
<input id="checkbox" />
<script>
$("#checkbox").kendoCheckBox({
size: "large"
});
</script>