@progress/kendo-angular-gauges
Version:
Kendo UI Angular Gauges
38 lines (37 loc) • 1.48 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { GaugeAreaComponent } from '../base-components';
import { ConfigurationService } from '../services';
import * as i0 from "@angular/core";
/**
* Represents the configuration options of the ArcGauge area.
* Controls the entire visible area of the ArcGauge.
*
* @example
* ```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;
* }
* ```
*/
export declare class ArcGaugeAreaComponent extends GaugeAreaComponent {
protected configurationService: ConfigurationService;
constructor(configurationService: ConfigurationService);
static ɵfac: i0.ɵɵFactoryDeclaration<ArcGaugeAreaComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ArcGaugeAreaComponent, "kendo-arcgauge-area", never, {}, {}, never, never, true, never>;
}