UNPKG

recharts

Version:
21 lines (20 loc) 747 B
import * as React from 'react'; import { PolarChartProps } from '../util/types'; export declare const defaultRadialBarChartProps: { readonly layout: "radial"; readonly startAngle: 0; readonly endAngle: 360; 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 RadialBarChart: React.ForwardRefExoticComponent<PolarChartProps & React.RefAttributes<SVGSVGElement>>;