badge.visible Boolean
(default: true)
If set to false the badge will not be displayed.
Example
<button id="button">Button</button>
<script>
$("#button").kendoButton({
badge: {
text: 21,
visible: false
}
});
</script>