@progress/kendo-angular-gauges
Version:
Kendo UI Angular Gauges
39 lines (38 loc) • 1.73 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 { SettingsComponent } from './settings.component';
import { GaugeArea, Border, Margin } from '../types';
import { ConfigurationService } from '../services';
import * as i0 from "@angular/core";
/**
* @hidden
*/
export declare class GaugeAreaComponent extends SettingsComponent implements GaugeArea {
protected key: string;
protected configurationService: ConfigurationService;
/**
* The background of the Gauge area. Accepts valid CSS color strings, including hex and rgb.
*/
background?: string;
/**
* The border of the Gauge area.
*/
border?: Border;
/**
* The height of the Gauge area.
*/
height?: number;
/**
* The margin of the Gauge area.
*/
margin?: number | Margin;
/**
* The width of the Gauge area.
*/
width?: number;
constructor(key: string, configurationService: ConfigurationService);
static ɵfac: i0.ɵɵFactoryDeclaration<GaugeAreaComponent, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<GaugeAreaComponent, never, never, { "background": { "alias": "background"; "required": false; }; "border": { "alias": "border"; "required": false; }; "height": { "alias": "height"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, never, false, never>;
}