UNPKG

@progress/kendo-angular-gauges

Version:
24 lines (23 loc) 1.54 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ScaleComponent } from '../base-components'; import { ConfigurationService } from '../services'; import { RadialScale, RadialLabels, Range } from '../types'; import * as i0 from "@angular/core"; /** * The configuration options for the scale of the RadialGauge * ([more information and example]({% slug scaleoptions_radialgauge %})). */ export declare class RadialScaleComponent extends ScaleComponent implements RadialScale { protected configurationService: ConfigurationService; labels?: RadialLabels; rangeDistance?: number; ranges?: Range[]; startAngle?: number; endAngle?: number; constructor(configurationService: ConfigurationService); static ɵfac: i0.ɵɵFactoryDeclaration<RadialScaleComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<RadialScaleComponent, "kendo-radialgauge-scale", never, { "labels": { "alias": "labels"; "required": false; }; "rangeDistance": { "alias": "rangeDistance"; "required": false; }; "ranges": { "alias": "ranges"; "required": false; }; "startAngle": { "alias": "startAngle"; "required": false; }; "endAngle": { "alias": "endAngle"; "required": false; }; }, {}, never, never, true, never>; }