Files
stats/apps/dashboard/src/components/report/chart/chart-utils.ts
Carl-Gerhard Lindesvärd ffed9bfaa5 move back 😏
2024-03-19 23:23:14 +01:00

12 lines
242 B
TypeScript

const formatter = new Intl.NumberFormat('en', {
notation: 'compact',
});
export function getYAxisWidth(value: number) {
if (!isFinite(value)) {
return 7.8 + 7.8;
}
return formatter.format(value).toString().length * 7.8 + 7.8;
}