UNPKG

@progress/kendo-angular-gauges

Version:
37 lines (36 loc) 1.42 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ArcScaleComponent } from '../arc-gauge/scale.component'; import { CircularGaugeScale } from '../types'; import * as i0 from "@angular/core"; /** * Represents the configuration options for the scale of the Circular Gauge * ([see example]({% slug scaleoptions_circulargauge %})). * * @example * ```typescript * @Component({ * selector: 'my-app', * template: ` * <kendo-circulargauge> * <kendo-circulargauge-scale [min]="0" [max]="100"> * </kendo-circulargauge-scale> * </kendo-circulargauge> * ` * }) * class AppComponent { } * ``` * * @remarks * Supported children components are: {@link CircularGaugeLabelsComponent} */ export declare class CircularGaugeScaleComponent extends ArcScaleComponent implements CircularGaugeScale { /** * @hidden */ endAngle?: number; static ɵfac: i0.ɵɵFactoryDeclaration<CircularGaugeScaleComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<CircularGaugeScaleComponent, "kendo-circulargauge-scale", never, {}, {}, never, never, true, never>; }