UNPKG

@progress/kendo-angular-gauges

Version:
24 lines (23 loc) 1.52 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 { ArcScale, RadialLabels, LineCap } from '../types'; import * as i0 from "@angular/core"; /** * The configuration options for the scale of the ArcGauge * ([see example]({% slug scaleoptions_arcgauge %})). */ export declare class ArcScaleComponent extends ScaleComponent implements ArcScale { protected configurationService: ConfigurationService; labels?: RadialLabels; rangeDistance?: number; rangeLineCap?: LineCap; startAngle?: number; endAngle?: number; constructor(configurationService: ConfigurationService); static ɵfac: i0.ɵɵFactoryDeclaration<ArcScaleComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<ArcScaleComponent, "kendo-arcgauge-scale", never, { "labels": { "alias": "labels"; "required": false; }; "rangeDistance": { "alias": "rangeDistance"; "required": false; }; "rangeLineCap": { "alias": "rangeLineCap"; "required": false; }; "startAngle": { "alias": "startAngle"; "required": false; }; "endAngle": { "alias": "endAngle"; "required": false; }; }, {}, never, never, true, never>; }