UNPKG

recharts

Version:
24 lines (23 loc) 783 B
import * as React from 'react'; import { PolarChartProps } from '../util/types'; export declare const defaultRadarChartProps: { readonly layout: "centric"; readonly startAngle: 90; readonly endAngle: -270; readonly accessibilityLayer: true; readonly stackOffset: "none"; readonly barCategoryGap: "10%"; readonly barGap: 4; readonly margin: import("../util/types").Margin; readonly reverseStackOrder: false; readonly syncMethod: "index"; readonly responsive: false; readonly cx: "50%"; readonly cy: "50%"; readonly innerRadius: 0; readonly outerRadius: "80%"; }; /** * @provides PolarViewBoxContext */ export declare const RadarChart: React.ForwardRefExoticComponent<PolarChartProps & React.RefAttributes<SVGSVGElement>>;