reaviz
Version:
Data Visualization using React
36 lines (35 loc) • 753 B
TypeScript
import { FC } from 'react';
export interface RadialAxisTickLineProps {
/**
* Size of the tick line.
*
* @default 10
*/
size?: number;
/**
* Stroke color of the tick line.
*
* @default 'rgba(113, 128, 141, .5)'
*/
stroke: string;
/**
* Inner radius of the arc.
*/
innerRadius: number;
/**
* Outer radius of the arc.
*/
outerRadius: number;
/**
* Position of the tick line.
*
* @default 'inside'
*/
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;
};