fybdp-d3-kg
Version:
Knowledge Graph using React and D3.js
11 lines (10 loc) • 335 B
TypeScript
import { ChartDataTypes, ChartInternalShallowDataShape } from '../data';
export interface TooltipAreaEvent {
visible: boolean;
nativeEvent: any;
value?: ChartDataTypes | Array<ChartDataTypes | ChartInternalShallowDataShape>;
pointY?: number;
pointX?: number;
offsetX?: number;
offsetY?: number;
}