@mui/x-charts
Version:
The community edition of MUI X Charts components.
32 lines • 1.07 kB
TypeScript
import { type RadarSeriesMarksProps } from "./RadarSeriesPlot.types.js";
import { type RadarClasses } from "../radarClasses.js";
import { type SeriesId } from "../../models/seriesType/common.js";
import type { HighlightItemIdentifierWithType } from "../../models/index.js";
import type { HighlightState } from "../../hooks/useItemHighlightState.js";
interface GetCirclePropsParams {
seriesId: SeriesId;
classes: RadarClasses;
getHighlightState: (item: HighlightItemIdentifierWithType<'radar'> | null) => HighlightState;
point: {
x: number;
y: number;
};
fillArea?: boolean;
color: string;
}
export declare function getCircleProps(params: GetCirclePropsParams): {
cx: number;
cy: number;
r: number;
fill: string;
stroke: string;
opacity: number;
className: string;
'data-highlighted': true | undefined;
'data-faded': true | undefined;
};
declare function RadarSeriesMarks(props: RadarSeriesMarksProps): import("react/jsx-runtime").JSX.Element;
declare namespace RadarSeriesMarks {
var propTypes: any;
}
export { RadarSeriesMarks };