UNPKG

@mui/x-charts

Version:

The community edition of MUI X Charts components.

11 lines 499 B
import * as React from 'react'; /** * Draws an SVG ring around the currently highlighted scatter point. * Used by renderers where the point itself is rasterized off the SVG tree * (for example WebGL or `svg-batch`), so the highlight has to be drawn in SVG * and positioned via the same axis scales the underlying renderer uses. */ export declare function HighlightedScatterMark({ className, ...props }: React.SVGAttributes<SVGCircleElement>): import("react/jsx-runtime").JSX.Element | null;