@progress/kendo-angular-gauges
Version:
Kendo UI Angular Gauges
42 lines (41 loc) • 1.24 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 { Border } from './border.interface';
import { Margin } from './margin.interface';
import { LinearPointerShape } from './linear-pointer-shape';
/**
* Represents the configuration options for the LinearGauge pointer.
*/
export interface LinearPointer {
/**
* Sets the border of the Gauge area.
*/
border?: Border;
/**
* Sets the color of the pointer.
* Accepts valid CSS color strings, including `hex` and `rgb`.
*/
color?: string;
/**
* Specifies the margin of the pointer.
*/
margin?: number | Margin;
/**
* Sets the opacity of the pointer.
*/
opacity?: number;
/**
* Sets the shape of the pointer.
*/
shape?: LinearPointerShape;
/**
* Specifies the size of the pointer.
*/
size?: number;
/**
* Sets the value of the pointer.
*/
value?: number;
}