/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { DashType } from '../../common/property-types';
import { AxisDefaultsCrosshairTooltip } from './crosshair.tooltip.interface';
/**
 * Specifies the configuration options of the axis crosshair
 * ([see example](https://www.telerik.com/kendo-angular-ui/components/charts/elements/axes#default-axis-configuration)).
 */
export interface AxisDefaultsCrosshair {
    /**
     * Specifies the color of the crosshair. Accepts a valid CSS color string, including `hex` and `rgb`.
     */
    color?: string;
    /**
     * Specifies the dash type of the crosshair.
     */
    dashType?: DashType;
    /**
     * Specifies the opacity of the crosshair. By default, the crosshair is opaque.
     */
    opacity?: number;
    /**
     * Determines whether the Chart displays the axis crosshair.
     * By default, the axis crosshair is not visible.
     */
    visible?: boolean;
    /**
     * Specifies the width of the crosshair in pixels.
     */
    width?: number;
    /**
     * Specifies the options of the crosshair tooltip.
     * The crosshair tooltip is displayed when the [`axisDefaults.crosshair.tooltip.visible`](https://www.telerik.com/kendo-angular-ui/components/charts/api/axisdefaultscrosshairtooltip#visible)
     * option is set to `true`.
     */
    tooltip?: AxisDefaultsCrosshairTooltip;
}
