victory-native
Version:
A charting library for React Native with a focus on performance and customization.
11 lines (10 loc) • 402 B
TypeScript
import type { PointsArray } from "../../types";
export type GetBarThicknessArgs = {
axisStart: number;
axisEnd: number;
points: PointsArray | PointsArray[];
innerPadding: number;
customBarThickness?: number;
barCount?: number;
};
export declare const getBarThickness: ({ axisStart, axisEnd, points, innerPadding, customBarThickness, barCount, }: GetBarThicknessArgs) => number;