layout

The ProgressBar layout, or how it would be rendered. Supported values are:
- horizontal (Default)
- vertical
- circular.

Note that the circular layout type can be customized (color, dimensions, etc) using special rendering options set in the layoutOptions property.

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