Range

17 Feb 20221 minute to read

Range represents the entire span of the progress bar and can be defined using the Minimum and Maximum properties. The default value of the range is 0 to 100.

@(Html.EJS().ProgressBar("container")
                        .Type(Syncfusion.EJ2.ProgressBar.ProgressType.Linear).Value(40)
                        .Height("60")
                        .Minimum(0).Maximum(100)
                        .Render())