max Number (default: Infinity)

If text is a number, it will cap that number.

Example

<button>Button <span id="badge"></span></button>
<script>
    $('#badge').kendoBadge({
        text: 1234,
        themeColor: 'primary',
        max: 1024
    });
</script>
In this article