Setting Range

28 Jun 20171 minute to read

The range of the ProgressBar is set by using minimum and maximum values. The Minimum value specifies the value where the ProgressBar shows the process to have started. The Maximum value specifies the value where the process is completed. You can set the range by using the minValue and maxValue property.

In the HTML page, add a <div> element to render the ProgressBar widget.

  • HTML
  • <div class="control">
        <div id="progressbar" ej-progressbar e-minvalue="40" e-maxvalue="80" e-value="80" e-height="20" e-width="500" e-create="create"></div>
       </div>
  • JS
  • angular.module('ProgressBarApp', ['ejangular'])
    .controller('ProgressBarCtrl', function ($scope) {
        $scope.create = function () {
            var progress = $("#progressbar").data("ejProgressBar");
            progress.setModel({ text: progress.getPercentage() + " % Completed" });
        }
    });

    The following screenshot displays the output.