UNPKG

@progress/kendo-angular-gauges

Version:
28 lines (27 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 { CollectionChangesService, ConfigurationService } from '../services'; import { RangeComponent } from '../base-components'; import * as i0 from "@angular/core"; /** * Represents the configuration options for a scale range item of a LinearGauge. * * @example * ```html * <kendo-lineargauge> * <kendo-lineargauge-scale> * <kendo-lineargauge-scale-ranges> * <kendo-lineargauge-scale-range *ngFor="let range of ranges" [from]="range.from" [to]="range.to" [color]="range.color"> * </kendo-lineargauge-scale-range> * </kendo-lineargauge-scale-ranges> * </kendo-lineargauge-scale> * </kendo-lineargauge> * ``` */ export declare class LinearRangeComponent extends RangeComponent { constructor(configurationService: ConfigurationService, collectionChangesService: CollectionChangesService); static ɵfac: i0.ɵɵFactoryDeclaration<LinearRangeComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<LinearRangeComponent, "kendo-lineargauge-scale-range", never, {}, {}, never, never, true, never>; }