@progress/kendo-vue-charts
Version:
37 lines (36 loc) • 1.23 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { PropType } from 'vue';
/**
* @hidden
*/
export interface CrosshairTooltipProps {
index: number;
name: string;
}
/**
* @hidden
*/
declare const CrosshairTooltip: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
index: PropType<number>;
name: PropType<string>;
}>, {}, {
popupShown: boolean;
popupAlign: any;
popupOffset: any;
popupContent: any;
popupStyles: any;
className: any;
}, {}, {
onShowTooltip(e: any): void;
onHideTooltip(): void;
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
index: PropType<number>;
name: PropType<string>;
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { CrosshairTooltip };