recharts
Version:
React charts
21 lines (20 loc) • 742 B
TypeScript
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%";
};
export declare const RadarChart: React.ForwardRefExoticComponent<PolarChartProps & React.RefAttributes<SVGSVGElement>>;