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

<textarea id="description"></textarea>
<script>
$("#description").kendoTextArea({
    rounded: "large"
});
</script>
In this article