recharts
Version:
React charts
11 lines (10 loc) • 359 B
TypeScript
import { ChartCoordinate, Coordinate } from '../types';
export type RadialCursorPoints = {
points: [startPoint: Coordinate, endPoint: Coordinate];
cx?: number;
cy?: number;
radius?: number;
startAngle?: number;
endAngle?: number;
};
export declare function getRadialCursorPoints(activeCoordinate: ChartCoordinate): RadialCursorPoints;