UNPKG

victory-native

Version:

A charting library for React Native with a focus on performance and customization.

11 lines (10 loc) 293 B
import type { YAxisDomain } from "../../types"; export declare const getYScaleInputBounds: ({ data, yKeys, domain, tickDomain, }: { data: Record<string, unknown>[]; yKeys: string[]; domain?: YAxisDomain; tickDomain?: YAxisDomain; }) => { yMin: number; yMax: number; };