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