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))
)