New to Telerik UI for ASP.NET MVC? Download free 30-day trial

CircularProgressBarColorBuilder

Methods

Color(System.String)

The color of the pointer in the specified range.

Parameters

value - System.String

The value that configures the color.

Example


            @(Html.Kendo().CircularProgressBar()
                    .Name("progressbar")
                    .Color("green")
            )

From(System.Double)

The lower range value of the applied color.

Parameters

value - System.Double

The value that configures the from.

Example


            @(Html.Kendo().CircularProgressBar()
                    .Name("progressbar")
                    .Color("green").Colors(c => c.Add().From(20))
            )

To(System.Double)

The upper range value of the applied color.

Parameters

value - System.Double

The value that configures the to.

Example


            @(Html.Kendo().CircularProgressBar()
                    .Name("progressbar")
                    .Color("green").Colors(c => c.Add().To(20))
            )

In this article
Not finding the help you need?