@progress/kendo-react-charts
Version:
React Chart renders a wide range of high-quality data visualizations. KendoReact Charts package
36 lines (35 loc) • 1.18 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 { CrosshairTooltipProps } from './Crosshair.js';
import { ChartContext } from '../ChartContext.js';
import * as React from 'react';
/**
* @hidden
*/
export interface Tooltips {
[key: string]: CrosshairTooltipProps;
}
/**
* @hidden
*/
export interface CrosshairTooltipContainerState {
tooltips: Tooltips;
}
/**
* @hidden
*/
export declare class CrosshairTooltipContainer extends React.Component<{}, CrosshairTooltipContainerState> {
static contextType: React.Context<import('../ChartContext').ChartContextType | null>;
context: React.ContextType<typeof ChartContext>;
readonly state: CrosshairTooltipContainerState;
private storeUnsubscriber;
componentDidMount(): void;
render(): React.JSX.Element;
componentWillUnmount(): void;
subscriber: () => void;
}