rounded
Sets / gets the badge rounding. See badge.options.rounded for valid options.
Parameters
rounded String
The new rounding of the badge.
Example
Set badge rounding after initialization.
<span id="badge">Badge</span>
<script>
var badge = $('#badge').kendoBadge({
rounded: 'medium',
}).data('kendoBadge');
window.setTimeout(function() {
badge.rounded('full');
}, 1000);
</script>