@progress/kendo-angular-gauges
Version:
Kendo UI Angular Gauges
32 lines (31 loc) • 1.53 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { LabelsComponent } from '../base-components';
import { ConfigurationService } from '../services';
import { RadialLabels, RadialLabelPosition } from '../types';
import * as i0 from "@angular/core";
/**
* Configures the configuration options for the scale labels of the RadialGauge.
*
* @example
* ```html
* <kendo-radialgauge>
* <kendo-radialgauge-scale>
* <kendo-radialgauge-scale-labels [visible]="true" [format]="'N0'">
* </kendo-radialgauge-scale-labels>
* </kendo-radialgauge-scale>
* </kendo-radialgauge>
* ```
*/
export declare class RadialLabelsComponent extends LabelsComponent implements RadialLabels {
protected configurationService: ConfigurationService;
/**
* Sepcifies rhe position of the labels relative to the scale.
*/
position: RadialLabelPosition;
constructor(configurationService: ConfigurationService);
static ɵfac: i0.ɵɵFactoryDeclaration<RadialLabelsComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<RadialLabelsComponent, "kendo-radialgauge-scale-labels", never, { "position": { "alias": "position"; "required": false; }; }, {}, never, never, true, never>;
}