UNPKG

@progress/kendo-angular-gauges

Version:
33 lines (32 loc) 1.08 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { Border } from './border.interface'; import { Margin } from './margin.interface'; /** * Represents the configuration options for the Gauge area. * Controls the entire visible area of the Gauge. */ export interface GaugeArea { /** * Sets the background of the Gauge area. Accepts valid CSS color strings, including hex and rgb. */ background?: string; /** * Sets the border of the Gauge area. */ border?: Border; /** * Sets the height of the Gauge area in pixels. */ height?: number; /** * Sets the margin of the Gauge area. */ margin?: number | Margin; /** * Sets the width of the Gauge area in pixels. */ width?: number; }