New to Telerik UI for ASP.NET MVC? Download free 30-day trial

CircularGaugeGaugeAreaBorderSettingsBuilder

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 that configures the color.

Example


                @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .GaugeArea(ga => ga.Border(b => b.Color(value)))
                )

DashType(System.String)

The dash type of the border.

Parameters

value - System.String

The value that configures the dashtype.

Example


                @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .GaugeArea(ga => ga.Border(b => b.DashType(value)))
                )

Opacity(System.Double)

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

Parameters

value - System.Double

The value that configures the opacity.

Example


                @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .GaugeArea(ga => ga.Border(b => b.Opacity(value)))
                )

Width(System.Double)

The width of the border.

Parameters

value - System.Double

The value that configures the width.

Example


                @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .GaugeArea(ga => ga.Border(b => b.Width(value)))
                )

In this article
Not finding the help you need?