CircularGaugeColorBuilder

Methods

Color(System.String)

The color of the pointer in the specified range.

Parameters

value - System.String

The value that configures the color.

Example

Razor
 
                @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                   .Colors(c => {
                      c.Add().Color(value);
                   })
                )
             

From(System.Double)

The lower range value of the applied color.

Parameters

value - System.Double

The value that configures the from.

Example

Razor
 
                @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                   .Colors(c => {
                      c.Add().From(value);
                   })
                )
             

To(System.Double)

The upper range value of the applied color.

Parameters

value - System.Double

The value that configures the to.

Example

Razor
 
                @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                   .Colors(c => {
                      c.Add().To(value);
                   })
                )