reaviz
Version:
Data Visualization using React
24 lines (22 loc) • 502 B
TypeScript
import { FC } from 'react';
export interface RadialAxisArcLineProps {
/**
* Stroke color of the arc.
*/
stroke: ((index: number) => string) | string;
/**
* Data to render the line.
*/
data: Array<{
x: number;
y: number;
}>;
/**
* Index of the arc.
*/
index: number;
}
export declare const RadialAxisArcLine: FC<Partial<RadialAxisArcLineProps>>;
export declare const RADIAL_AXIS_ARC_LINE_DEFAULT_PROPS: {
stroke: string;
};