trackRounded String (default: 'full')

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

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

Example

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