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