UNPKG

@progress/kendo-angular-gauges

Version:
46 lines (45 loc) 2.35 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { Input, Component } from '@angular/core'; import { ScaleComponent } from '../base-components'; import { ConfigurationService } from '../services'; import * as i0 from "@angular/core"; import * as i1 from "../services"; /** * The configuration options for the scale of the RadialGauge * ([more information and example]({% slug scaleoptions_radialgauge %})). */ export class RadialScaleComponent extends ScaleComponent { configurationService; labels; rangeDistance; ranges; startAngle; endAngle; constructor(configurationService) { super('scale', configurationService); this.configurationService = configurationService; } static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadialScaleComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component }); static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: RadialScaleComponent, isStandalone: true, selector: "kendo-radialgauge-scale", inputs: { labels: "labels", rangeDistance: "rangeDistance", ranges: "ranges", startAngle: "startAngle", endAngle: "endAngle" }, usesInheritance: true, ngImport: i0, template: '', isInline: true }); } i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadialScaleComponent, decorators: [{ type: Component, args: [{ selector: 'kendo-radialgauge-scale', template: '', standalone: true }] }], ctorParameters: function () { return [{ type: i1.ConfigurationService }]; }, propDecorators: { labels: [{ type: Input }], rangeDistance: [{ type: Input }], ranges: [{ type: Input }], startAngle: [{ type: Input }], endAngle: [{ type: Input }] } });