UNPKG

reaviz

Version:

Data Visualization using React

29 lines (28 loc) 626 B
import { FC } from 'react'; export interface FunnelAxisLineProps { /** * Color of the axis lines. * * @default '#333' */ strokeColor: string; /** * Width of the axis lines. * * @default 2 */ strokeWidth: number; /** * xScale for the funnel. Set internally by `FunnelChart`. */ xScale: any; /** * yScale for the funnel. Set internally by `FunnelChart`. */ yScale: any; /** * Index of the line. Set internally by `FunnelAxis`. */ index: number; } export declare const FunnelAxisLine: FC<Partial<FunnelAxisLineProps>>;