CircularProgressBarColorBuilder
Methods
Color(System.String)
The color of the pointer in the specified range.
Parameters
value - System.String
The value for Color
RETURNS
Returns the current CircularProgressBarColorBuilder instance.
Example
Razor
@(Html.Kendo().CircularProgressBar()
.Name("progressbar")
.Color("green")
)
From(System.Double)
The lower range value of the applied color.
Parameters
value - System.Double
The value for From
RETURNS
Returns the current CircularProgressBarColorBuilder instance.
Example
Razor
@(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 for To
RETURNS
Returns the current CircularProgressBarColorBuilder instance.
Example
Razor
@(Html.Kendo().CircularProgressBar()
.Name("progressbar")
.Color("green").Colors(c => c.Add().To(20))
)