mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-23 20:42:02 +00:00
9 lines
216 B
TypeScript
9 lines
216 B
TypeScript
const Y_AXIS_TICK_FORMATTER = new Intl.NumberFormat("en-US", {
|
|
notation: "compact",
|
|
maximumFractionDigits: 1,
|
|
});
|
|
|
|
export function formatYAxisTick(value: number) {
|
|
return Y_AXIS_TICK_FORMATTER.format(value);
|
|
}
|