@mui/x-charts
Version:
The community edition of the charts components (MUI X).
15 lines (14 loc) • 522 B
TypeScript
import * as React from 'react';
export type ChartsVoronoiHandlerProps = {
/**
* Defines the maximal distance between a scatter point and the pointer that triggers the interaction.
* If `undefined`, the radius is assumed to be infinite.
* @default undefined
*/
voronoiMaxRadius?: number | undefined;
};
declare function ChartsVoronoiHandler(props: ChartsVoronoiHandlerProps): React.JSX.Element;
declare namespace ChartsVoronoiHandler {
var propTypes: any;
}
export { ChartsVoronoiHandler };