UNPKG

react-d3-axis-mod

Version:

React-based Axis component for D3 (fork with text shadow)

13 lines (11 loc) 290 B
export type Scaler<T> = (x: T) => number; export type Orients = 'TOP' | 'RIGHT' | 'BOTTOM' | 'LEFT'; export type AxisStyle = { orient: Orients; tickSizeInner: number; tickSizeOuter: number; tickPadding: number; strokeWidth: number; tickFont: string; tickFontSize: number; };