/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { DashType } from '../../common/property-types.js';
import { AxisDefaultsCrosshairTooltip } from './crosshair.tooltip.interface.js';
/**
 * @hidden
 */
export interface AxisDefaultsCrosshair {
    /**
     * The color of the crosshair. Accepts a valid CSS color string, including `hex` and `rgb`.
     */
    color?: string;
    /**
     * The dash type of the crosshair.
     *
     * The following dash types are supported:
     *
     * - `"dash"`&mdash;A line which consists of dashes.
     * - `"dashDot"`&mdash;A line which consists of a repeating pattern of dash-dot.
     * - `"dot"`&mdash;A line which consists of dots.
     * - `"longDash"`&mdash;A line which consists of a repeating pattern of long-dash.
     * - `"longDashDot"`&mdash;A line which consists of a repeating pattern of long-dash-dot.
     * - `"longDashDotDot"`&mdash;A line which consists of a repeating pattern of long-dash-dot-dot.
     * - `"solid"`&mdash;A solid line.
     */
    dashType?: DashType;
    /**
     * The opacity of the crosshair. By default, the crosshair is opaque.
     */
    opacity?: number;
    /**
     * If set to `true`, the Chart displays the axis crosshair. By default, the axis crosshair is not visible.
     */
    visible?: boolean;
    /**
     * The width of the crosshair in pixels.
     */
    width?: number;
    /**
     * The options of the crosshair tooltip. The crosshair tooltip is displayed when the [`axisDefaults.crosshair.tooltip.visible`](https://www.telerik.com/kendo-react-ui/components/charts/api/chartaxisdefaultscrosshairtooltipprops#toc-visible) option is set to `true`.
     */
    tooltip?: AxisDefaultsCrosshairTooltip;
}
