rounded String (default: 'medium')

Sets a value controlling the component input element border radius. Can also be set to the following string values:

  • "small"
  • "medium"
  • "large"
  • "full"
  • null

Example

<input id="checkbox" />
<script>
$("#checkbox").kendoCheckBox({
    rounded: "small"
});
</script>
In this article