CircularGaugeScaleLabelsMarginSettingsBuilder

Methods

Top(System.Double)

The top margin of the labels.

Parameters

value - System.Double

The value for Top

RETURNS

Returns the current CircularGaugeScaleLabelsMarginSettingsBuilder instance.

Example

Razor
 
            @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .Scale(s => s.Labels(l=>l.Margin(m=>m.Bottom(value)))
                )
             

Bottom(System.Double)

The bottom margin of the labels.

Parameters

value - System.Double

The value for Bottom

RETURNS

Returns the current CircularGaugeScaleLabelsMarginSettingsBuilder instance.

Example

Razor
 
            @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .Scale(s => s.Labels(l=>l.Margin(m=>m.Bottom(value)))
                )
             

Left(System.Double)

The left margin of the labels.

Parameters

value - System.Double

The value for Left

RETURNS

Returns the current CircularGaugeScaleLabelsMarginSettingsBuilder instance.

Example

Razor
 
            @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .Scale(s => s.Labels(l=>l.Margin(m=>m.Left(value)))
                )
             

Right(System.Double)

The right margin of the labels.

Parameters

value - System.Double

The value for Right

RETURNS

Returns the current CircularGaugeScaleLabelsMarginSettingsBuilder instance.

Example

Razor
 
            @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .Scale(s => s.Labels(l=>l.Margin(m=>m.Right(value)))
                )