/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { YAxisCrosshairTooltip } from './crosshair.tooltip.interface'; /** * Represents the Y-axis crosshair options. */ export interface YAxisCrosshair { /** * Sets the color of the crosshair. * Accepts a valid CSS color string, including HEX and RGB. */ color?: string; /** * Sets the opacity of the crosshair. * By default, the crosshair is opaque. */ opacity?: number; /** * Determines if the Chart displays the Y-axis crosshair of the Scatter Chart. * By default, the Y-axis crosshair of the Scatter Chart is not visible. */ visible?: boolean; /** * Sets the width of the crosshair in pixels. */ width?: number; /** * Configures the crosshair tooltip options. * The crosshair tooltip is displayed when the [`yAxis.crosshair.tooltip.visible`](https://www.telerik.com/kendo-angular-ui/components/charts/api/yaxiscrosshairtooltip#visible) option is set to `true`. */ tooltip?: YAxisCrosshairTooltip; }