recharts
Version:
React charts
11 lines (10 loc) • 393 B
TypeScript
import { ChartCoordinate, ChartOffsetInternal, LayoutType } from '../types';
export type CursorRectangle = {
stroke: string;
fill: string;
x: number;
y: number;
width: number;
height: number;
};
export declare function getCursorRectangle(layout: LayoutType, activeCoordinate: ChartCoordinate, offset: ChartOffsetInternal, tooltipAxisBandSize: number): CursorRectangle;