UNPKG

@progress/kendo-angular-gauges

Version:
46 lines (45 loc) 2.11 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { Component } from '@angular/core'; import { GaugeAreaComponent } from '../base-components'; import { ConfigurationService } from '../services'; import * as i0 from "@angular/core"; import * as i1 from "../services"; /** * Represents the configuration options for the RadialGauge area. * This component controls the entire visible area of the RadialGauge. * * @example * ```ts * import { Component } from '@angular/core'; * * @Component({ * selector: 'my-app', * template: ` * <kendo-radialgauge-area background="lightblue"> * </kendo-radialgauge-area> * ` * }) * class AppComponent { * } * ``` */ export class RadialGaugeAreaComponent extends GaugeAreaComponent { configurationService; constructor(configurationService) { super('gaugeArea', configurationService); this.configurationService = configurationService; } static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: RadialGaugeAreaComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component }); static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: RadialGaugeAreaComponent, isStandalone: true, selector: "kendo-radialgauge-area", usesInheritance: true, ngImport: i0, template: '', isInline: true }); } i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: RadialGaugeAreaComponent, decorators: [{ type: Component, args: [{ selector: 'kendo-radialgauge-area', template: '', standalone: true }] }], ctorParameters: () => [{ type: i1.ConfigurationService }] });