UNPKG

react-native-chart-kit

Version:

Beautiful React Native charts for dashboards, reports, and data-rich mobile apps.

15 lines 560 B
import type { LineChartInteractionBounds } from "./interaction"; export type LineChartOutsidePressSurface = { height: number; key: "top" | "left" | "right" | "bottom"; left: number; top: number; width: number; }; export declare const getLineChartOutsidePressSurfaces: ({ enabled, mainHeight, visibleInteractionBounds, width }: { enabled: boolean; mainHeight: number; visibleInteractionBounds: LineChartInteractionBounds; width: number; }) => LineChartOutsidePressSurface[]; //# sourceMappingURL=outsidePressSurfaces.d.ts.map