New to Kendo UI for AngularStart a free 30-day trial

Represents the configuration options for the scale of the ArcGauge (see example).

Definition

Package:@progress/kendo-angular-gauges

Selector:kendo-arcgauge-scale

Syntax:

ts
import { Component } from '@angular/core';

@Component({
    selector: 'my-app',
    template: `
        <kendo-arcgauge [value]="value">
            <kendo-arcgauge-scale
                [startAngle]="-90"
                [endAngle]="90"
                [rangeDistance]="10">
            </kendo-arcgauge-scale>
        </kendo-arcgauge>
    `
})
export class AppComponent {
    public value: number = 30;
}

Inputs

endAngle?

number

Sets the end angle of the Gauge in degrees.

Sets the scale labels configuration.

Sets the major scale ticks.

Defines the interval between major divisions.

max?

number

Specifies the maximum value of the scale.

min?

number

Specifies the minimum value of the scale.

Sets the minor scale ticks.

Defines the interval between minor divisions.

Sets the distance between the scale ranges in pixels.

Sets the line cap style for the scale ranges.

Sets the default color of the ranges.

Specifies the width of the range indicators.

reverse?

boolean

Reverses the scale direction.

Sets the start angle of the Gauge in degrees.