UNPKG

@progress/kendo-angular-charts

Version:

Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.

35 lines (34 loc) 1.33 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 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`]({% slug api_charts_yaxiscrosshairtooltip %}#toc-visible) option is set to `true`. */ tooltip?: YAxisCrosshairTooltip; }