CircularGaugeGaugeAreaMarginSettingsBuilder

Methods

Top(System.Double)

The top margin of the gauge area.

Parameters

value - System.Double

The value that configures the top.

Example

Razor
 
                @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .GaugeArea(ga => ga.Margin(m=>m.Top(value)))
                )
             

Bottom(System.Double)

The bottom margin of the gauge area.

Parameters

value - System.Double

The value that configures the bottom.

Example

Razor
 
                @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .GaugeArea(ga => ga.Margin(m=>m.Bottom(value)))
                )
             

Left(System.Double)

The left margin of the gauge area.

Parameters

value - System.Double

The value that configures the left.

Example

Razor
 
                @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .GaugeArea(ga => ga.Margin(m=>m.Left(value)))
                )
             

Right(System.Double)

The right margin of the gauge area.

Parameters

value - System.Double

The value that configures the right.

Example

Razor
 
                @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .GaugeArea(ga => ga.Margin(m=>m.Right(value)))
                )