rounded String (default: 'medium')

Specifies the size of the badge. Valid options are small, medium, large and full.

Example

<span id="badge-small">Small badge</span>
<span id="badge-medium">Medium badge</span>
<span id="badge-large">Large badge</span>
<span id="badge-full">Full badge</span>
<script>
    $('#badge-small').kendoBadge({ rounded: 'small', themeColor: 'primary' });
    $('#badge-medium').kendoBadge({ rounded: 'medium', themeColor: 'primary' });
    $('#badge-large').kendoBadge({ rounded: 'large', themeColor: 'primary' });
    $('#badge-full').kendoBadge({ rounded: 'full', themeColor: 'primary' });
</script>
In this article