victory-native
Version:
A charting library for React Native with a focus on performance and customization.
13 lines (12 loc) • 429 B
TypeScript
import type { PointsArray } from "../../types";
import type { VerticalBarRect } from "./getVerticalBarRect";
type Point = PointsArray[number];
export declare const getVerticalBarGroupRect: ({ point, baselineY, barWidth, groupWidth, gapWidth, barIndex, }: {
point: Point;
baselineY: number;
barWidth: number;
groupWidth: number;
gapWidth: number;
barIndex: number;
}) => VerticalBarRect | null;
export {};