UNPKG

reaviz

Version:

Data Visualization using React

43 lines (42 loc) 903 B
import { FC } from 'react'; export interface RadialAxisArcProps { /** * Index of the arc. */ index: number; /** * Scale to use for the arc. */ scale: any; /** * Stroke color of the arc. * * @default '#71808d' */ stroke: ((index: number) => string) | string; /** * Stroke dash array of the arc. * * @default '1,4' */ strokeDasharray: ((index: number) => string) | string; /** * Start angle for the first value. * * @default 0 */ startAngle?: number; /** * End angle for the last value. * * @default 2 * Math.PI */ endAngle?: number; } export declare const RadialAxisArc: FC<Partial<RadialAxisArcProps>>; export declare const RADIAL_AXIS_ARC_DEFAULT_PROPS: { stroke: string; strokeDasharray: string; startAngle: number; endAngle: number; };