reaviz
Version:
Data Visualization using React
31 lines (29 loc) • 647 B
TypeScript
import { FC } from 'react';
export interface RadialAxisTickLineProps {
/**
* Size of the tick line.
*/
size?: number;
/**
* Stroke color of the tick line.
*/
stroke: string;
/**
* Inner radius of the arc.
*/
innerRadius: number;
/**
* Outer radius of the arc.
*/
outerRadius: number;
/**
* Position of the tick line.
*/
position: 'inside' | 'outside';
}
export declare const RadialAxisTickLine: FC<Partial<RadialAxisTickLineProps>>;
export declare const RADIAL_AXIS_TICK_LINE_DEFAULT_PROPS: {
stroke: string;
size: number;
position: string;
};