UNPKG

fybdp-d3-kg

Version:

Knowledge Graph using React and D3.js

22 lines (21 loc) 606 B
import { PureComponent } from 'react'; export interface LinearAxisTickLineProps { height: number; width: number; orientation: 'horizontal' | 'vertical'; size: number; strokeColor?: string; strokeWidth: number; position: 'start' | 'end' | 'center'; className?: any; } export declare class LinearAxisTickLine extends PureComponent<LinearAxisTickLineProps> { static defaultProps: Partial<LinearAxisTickLineProps>; positionTick(): { x1: number; x2: number; y1: number; y2: number; }; render(): JSX.Element; }