ArcGaugeAreaComponent
Component
Represents the configuration options of the ArcGauge area. Controls the entire visible area of the ArcGauge.
Definition
Package:@progress/kendo-angular-gauges
Selector:kendo-arcgauge-area
Syntax:
ts
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `
<kendo-arcgauge [value]="value">
<kendo-arcgauge-area
background="lightgray"
[margin]="10">
</kendo-arcgauge-area>
</kendo-arcgauge>
`
})
export class AppComponent {
public value: number = 40;
}