UNPKG

victory-native

Version:

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

9 lines (8 loc) 287 B
import type { Scale } from "../../types"; export declare const getXAxisTicks: ({ isNumericalData, ix, tickCount, tickValues, xScale, }: { isNumericalData: boolean; ix: unknown[]; tickCount: number; tickValues?: number[]; xScale: Pick<Scale, "ticks">; }) => number[];