size String
(default: 'medium')
Specifies the size of the badge. Valid options are small
, medium
and large
.
Example
<span id="badge-small">Small badge</span>
<span id="badge-medium">Medium badge</span>
<span id="badge-large">Large badge</span>
<script>
$('#badge-small').kendoBadge({ size: 'small', themeColor: 'primary' });
$('#badge-medium').kendoBadge({ size: 'medium', themeColor: 'primary' });
$('#badge-large').kendoBadge({ size: 'large', themeColor: 'primary' });
</script>