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

Represents the configuration options for an ArcGauge color item.

Definition

Package:@progress/kendo-angular-gauges

Selector:kendo-arcgauge-color

Syntax:

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

@Component({
    selector: 'my-app',
    template: `
        <kendo-arcgauge [value]="value">
            <kendo-arcgauge-colors>
                <kendo-arcgauge-color
                    [from]="0"
                    [to]="50"
                    color="green">
                </kendo-arcgauge-color>
            </kendo-arcgauge-colors>
        </kendo-arcgauge>
    `
})
export class AppComponent {
    public value: number = 25;
}

Inputs

color

string

Sets the color of the range. Accepts valid CSS color strings, including hex and rgb.

from

number

Sets the range start value.

opacity

number

Sets the opacity of the range.

to

number

Sets the range end value.

In this article
DefinitionInputscolorfromopacityto
Not finding the help you need?
Contact Support