CircularGaugeScaleLabelsBorderSettingsBuilder

Methods

Color(System.String)

The color of the border. Any valid CSS color string will work here, including hex and rgb.

Parameters

value - System.String

The value for Color

RETURNS

Returns the current CircularGaugeScaleLabelsBorderSettingsBuilder instance.

Example

Razor
 
            @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .Scale(s => s.Labels(l => l.Border(b => b.Color(value)))
                )
             

Opacity(System.Double)

The opacity of the border. By default the border is opaque.

Parameters

value - System.Double

The value for Opacity

RETURNS

Returns the current CircularGaugeScaleLabelsBorderSettingsBuilder instance.

Example

Razor
 
            @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .Scale(s => s.Labels(l => l.Border(b => b.Opacity(value)))
                )
             

Width(System.Double)

The width of the border.

Parameters

value - System.Double

The value for Width

RETURNS

Returns the current CircularGaugeScaleLabelsBorderSettingsBuilder instance.

Example

Razor
 
            @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .Scale(s => s.Labels(l => l.Border(b => b.Width(value)))
                )
             

DashType(Kendo.Mvc.UI.DashType)

Specifies the line dash type.

Parameters

value - DashType

The value for DashType

RETURNS

Returns the current CircularGaugeScaleLabelsBorderSettingsBuilder instance.

Example

Razor
 
            @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .Scale(s => s.Labels(l => l.Border(b => b.DashType(value)))
                )