@progress/kendo-angular-gauges
Version:
Kendo UI Angular Gauges
31 lines (30 loc) • 1.32 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 { CollectionItemComponent } from './collection-item.component';
import { Range } from '../types';
import * as i0 from "@angular/core";
/**
* @hidden
*/
export declare class RangeComponent extends CollectionItemComponent implements Range {
/**
* The start position of the range.
*/
from?: number;
/**
* The end position of the range.
*/
to?: number;
/**
* The range opacity.
*/
opacity?: number;
/**
* The color of the range. Accepts valid CSS color strings, including hex and rgb.
*/
color?: string;
static ɵfac: i0.ɵɵFactoryDeclaration<RangeComponent, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<RangeComponent, never, never, { "from": { "alias": "from"; "required": false; }; "to": { "alias": "to"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, false, never>;
}