reaviz
Version:
Data Visualization using React
26 lines (24 loc) • 572 B
TypeScript
import { FC } from 'react';
export interface FunnelAxisLineProps {
/**
* Color of the axis lines.
*/
strokeColor: string;
/**
* Width of the axis lines.
*/
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>>;