roundedString(default: undefined)
Could be one of the predefined shapes available for the widget container. When undefined (the default), the theme controls the default border radius. Options are: "full", "small", "medium", "large".
The
"none"value is deprecated. Use custom CSS instead.
Example
<div id="avatar"></div>
<script>
$("#avatar").kendoAvatar({
text: "IG",
rounded: "medium"
});
</script>