rounded String (default: 'medium')

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

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

Example

<input id="colorpicker" type="color" />
<script>
$("#colorpicker").kendoColorPicker({
  rounded: "full"
});
</script>
In this article