CircularGaugeScaleLabelsPaddingSettingsBuilder
Methods
Top(System.Double)
The top padding of the labels.
Parameters
value - System.Double
The value that configures the top.
Example
@(Html.Kendo().CircularGauge()
.Name("circularGauge")
.Scale(s => s.Labels(l=>l.Padding(p=>p.Top(value)))
)
Bottom(System.Double)
The bottom padding of the labels.
Parameters
value - System.Double
The value that configures the bottom.
Example
@(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 that configures the left.
Example
@(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 that configures the right.
Example
@(Html.Kendo().CircularGauge()
.Name("circularGauge")
.Scale(s => s.Labels(l=>l.Padding(p=>p.Right(value)))
)