max

The max setting sets the maximum value for the rating, or the maximim number of start or symbols.
The code below demonstrates one such setup:

<div id="rating"></div>

<script type="text/javascript">
jQuery(function($) {
    $("#rating").shieldRating({
        min: 0,
        max: 12
    });
});
</script>