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"
- null
Example
<input id="radio" />
<script>
$("#radio").kendoRadioButton({
size: "large"
});
</script>