UNPKG

@progress/kendo-angular-gauges

Version:
30 lines (29 loc) 1.03 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { Cap } from './cap.interface'; /** * Represents the configuration options for the RadialGauge pointer. */ export interface RadialPointer { /** * Defines the settings for the cap. */ cap?: Cap; /** * Sets the color of the pointer. * Accepts valid CSS color strings, including `hex` and `rgb`. */ color?: string; /** * Sets the pointer length in percent based on the distance to the scale. * The default length of `1` means that the pointer exactly reaches the scale. * Accepts values between `0.1` and `1.5`. */ length?: number; /** * Sets the pointer value. */ value?: number; }