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

CircularGaugeScaleMajorTicksSettingsBuilder

Methods

Color(System.String)

The color of the major ticks.

Parameters

value - System.String

The value that configures the color.

Example


                @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .Scale(s=>s.MajorTicks(m=>m.Color(value)))
                )

Size(System.Double)

The major tick size. This is the length of the line in pixels that is drawn to indicate the tick on the scale.

Parameters

value - System.Double

The value that configures the size.

Example


                @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .Scale(s=>s.MajorTicks(m=>m.Size(value)))
                )

Visible(System.Boolean)

The visibility of the major ticks.

Parameters

value - System.Boolean

The value that configures the visible.

Example


                @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .Scale(s=>s.MajorTicks(m=>m.Visible(value)))
                )

Width(System.Double)

The width of the major ticks.

Parameters

value - System.Double

The value that configures the width.

Example


                @(Html.Kendo().CircularGauge()
                    .Name("circularGauge")
                    .Scale(s=>s.MajorTicks(m=>m.Width(value)))
                )

In this article
Not finding the help you need?