@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.
48 lines (47 loc) • 2.34 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ConfigurationService } from '../../common/configuration.service';
import { SettingsComponent } from '../../common/settings.component';
import { Border, Padding } from '../../common/property-types';
import { YAxisCrosshairTooltip } from '../../common/property-types';
import * as i0 from "@angular/core";
/**
* Represents the configuration options of the crosshair tooltip in the Y axis.
* The crosshair tooltip is displayed when the `visible` option is set to `true`.
*/
export declare class YAxisCrosshairTooltipComponent extends SettingsComponent implements YAxisCrosshairTooltip {
configurationService: ConfigurationService;
/**
* Specifies the background color of the tooltip.
*/
background: string;
/**
* Specifies the border configuration of the tooltip.
*/
border: Border;
/**
* Specifies the text color of the tooltip.
*/
color: string;
/**
* Specifies the font style of the tooltip.
*/
font: string;
/**
* Specifies the format of the tooltip.
*/
format: string;
/**
* Specifies the padding of the tooltip. A numeric value sets all paddings.
*/
padding: Padding | number;
/**
* Determines whether the tooltip is visible.
*/
visible: boolean;
constructor(configurationService: ConfigurationService);
static ɵfac: i0.ɵɵFactoryDeclaration<YAxisCrosshairTooltipComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<YAxisCrosshairTooltipComponent, "kendo-chart-y-axis-item-crosshair-tooltip", never, { "background": { "alias": "background"; "required": false; }; "border": { "alias": "border"; "required": false; }; "color": { "alias": "color"; "required": false; }; "font": { "alias": "font"; "required": false; }; "format": { "alias": "format"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, {}, never, never, true, never>;
}