thumbRounded String (default: 'full')

Sets a value controlling the thumb's border radius. Can also be set to the following string values:

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

Example

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