/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { XAxisCrosshairTooltip } from './crosshair.tooltip.interface'; /** * Represents the configuration options of the X-axis crosshair. */ export interface XAxisCrosshair { /** * Specifies the color of the crosshair. Accepts a valid CSS color string, including HEX and RGB. */ color?: string; /** * Specifies the opacity of the crosshair. By default, the crosshair is opaque. */ opacity?: number; /** * Determines whether the Chart displays the X-axis crosshair of the Scatter Chart. * By default, the X-axis crosshair of the Scatter Chart 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 [`xAxis.crosshair.tooltip.visible`](https://www.telerik.com/kendo-angular-ui/components/charts/api/xaxiscrosshairtooltip#visible) option is set to `true`. */ tooltip?: XAxisCrosshairTooltip; }