Define value

12 Apr 20171 minute to read

Value

The Value for the ProgressBar is set by using ‘Value’ property. The Value should be between the minimum (min) and the maximum (max) values (number) of the ProgressBar. By default, the MinValue is 0 and the MaxValue is 100 in ProgressBar, and the ‘Value’ is set to 0(number).

The following steps explain you on how to set the Value for the ProgressBar widget.

  1. In the VIEW page, add the below code to render the ProgressBar widget.
  • CSHTML
  • // Add the following code example to the corresponding CSHTML page to render the ProgressBar control with customized value.
    
    <ej-progress-bar id="progressBar" min-value="40" max-value="80" value="60" text="60" height="20" width="500"/>

    The following screenshot displays the output for the above code.

    Percentage

    The ProgressBar value is set in Percentage by using the ‘Percentage’ property. The value should be between the min and max values (number) of the ProgressBar. By default, the MinValue is 0 and the MaxValue is 100 in ProgressBar, and percentage is set to 0 (number).

    The following steps explain you on how to set the value in Percentage for the ProgressBar widget.

    1. In the VIEW page, add the below code to render the ProgressBar widget.
  • CSHTML
  • // Add the following code example to the corresponding CSHTML page to render the ProgressBar control with customized percentage.
    
    <ej-progress-bar id="progressBar" min-value="40" max-value="80" percentage="60" text="60" height="20" width="500"/>

    The following screenshot displays the output.

    Percentage in Progress Bar