UNPKG

fybdp-d3-kg

Version:

Knowledge Graph using React and D3.js

21 lines (20 loc) 572 B
/** * Gets the min/max values handling nested arrays. */ export declare function extent(data: any[], attr: string): number[]; /** * Get the domain for the Y Axis. */ export declare function getYDomain({ data, scaled, isDiverging }: { data: any; scaled?: boolean | undefined; isDiverging?: boolean | undefined; }): number[]; /** * Get the domain for the X Axis. */ export declare function getXDomain({ data, scaled, isDiverging }: { data: any; scaled?: boolean | undefined; isDiverging?: boolean | undefined; }): number[];