UNPKG

victory-native

Version:

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

14 lines (13 loc) 245 B
export const getBarGroupOffset = ({ groupWidth, barWidth, gapWidth, barIndex, }: { groupWidth: number; barWidth: number; gapWidth: number; barIndex: number; }) => { return -groupWidth / 2 + barIndex * (barWidth + gapWidth); };