badge.sizeString(default: 'medium')
Specifies the size of the badge. Valid options are small, medium and large.
Example
<button id="button">Button</button>
<script>
$("#button").kendoButton({
badge: {
text: "10",
size: "large"
}
});
</script>
In this article