UNPKG

@progress/kendo-angular-gauges

Version:
39 lines (38 loc) 1.56 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { RadialLabelsComponent } from '../radial-gauge/labels.component'; import { ConfigurationService } from '../services'; import * as i0 from "@angular/core"; /** * Represents the configuration options for the scale labels of the ArcGauge. * * @example * ```ts * import { Component } from '@angular/core'; * * @Component({ * selector: 'my-app', * template: ` * <kendo-arcgauge [value]="value"> * <kendo-arcgauge-scale> * <kendo-arcgauge-scale-labels * color="blue" * font="12px Arial"> * </kendo-arcgauge-scale-labels> * </kendo-arcgauge-scale> * </kendo-arcgauge> * ` * }) * export class AppComponent { * public value: number = 50; * } * ``` */ export declare class ArcLabelsComponent extends RadialLabelsComponent { protected configurationService: ConfigurationService; constructor(configurationService: ConfigurationService); static ɵfac: i0.ɵɵFactoryDeclaration<ArcLabelsComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<ArcLabelsComponent, "kendo-arcgauge-scale-labels", never, {}, {}, never, never, true, never>; }