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.

34 lines (33 loc) 1.31 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2024 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ValueAxisCrosshairTooltip } from './crosshair.tooltip.interface'; /** * The configuration options of the value axis crosshair. */ export interface ValueAxisCrosshair { /** * The color of the crosshair. Accepts a valid CSS color string, including HEX and RGB. */ color?: string; /** * The opacity of the crosshair. By default, the crosshair is opaque. */ opacity?: number; /** * If set to `true`, the Chart displays the value axis crosshair. * By default, the value 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 [`valueAxis.crosshair.tooltip.visible`]({% slug api_charts_valueaxiscrosshairtooltip %}#toc-visible) * option is set to `true`. */ tooltip?: ValueAxisCrosshairTooltip; }