jQuery ProgressBar API Settings

The ProgressBar widget is initialized with the shieldProgressBar constructor, passing it a dictionary of settings as shown below:

 <script type="text/javascript">
     $(function () {
         $("#progress").shieldProgressBar({
             min: 0,
             max: 100,
             value: 30,
             text: {
                 enabled: true,
                 template: "{0} %"
             }
         });
     });
</script>

Details about all configuration settings can be found below.