CircularGaugeScaleLabelsPaddingSettingsBuilder

Methods

Top(System.Double)

The top padding of the labels.

Parameters

value - System.Double

The value for Top

RETURNS

Returns the current CircularGaugeScaleLabelsPaddingSettingsBuilder instance.

Example

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

Bottom(System.Double)

The bottom padding of the labels.

Parameters

value - System.Double

The value for Bottom

RETURNS

Returns the current CircularGaugeScaleLabelsPaddingSettingsBuilder instance.

Example

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

Left(System.Double)

The left padding of the labels.

Parameters

value - System.Double

The value for Left

RETURNS

Returns the current CircularGaugeScaleLabelsPaddingSettingsBuilder instance.

Example

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

Right(System.Double)

The right padding of the labels.

Parameters

value - System.Double

The value for Right

RETURNS

Returns the current CircularGaugeScaleLabelsPaddingSettingsBuilder instance.

Example

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