/**-----------------------------------------------------------------------------------------
* Copyright © 2026 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;
}
