diff --git a/components/charts/UtilizationRateChart/index.tsx b/components/charts/UtilizationRateChart/index.tsx index 71f58f8e0..76279dcb5 100644 --- a/components/charts/UtilizationRateChart/index.tsx +++ b/components/charts/UtilizationRateChart/index.tsx @@ -52,7 +52,7 @@ function UtilizationRateChart({ type, symbol }: Props) { }, [backupBorrows, fixedDeposits, floatingBorrows, floatingDeposits]); return ( - + {type === 'floating' @@ -60,7 +60,7 @@ function UtilizationRateChart({ type, symbol }: Props) { : t('Utilization Rates (Fixed Rate Pools)')} - + {loading || !data || !borrowAPR || !currentUtilization ? ( ) : ( @@ -128,10 +128,12 @@ function UtilizationRateChart({ type, symbol }: Props) { tickfont: { family: 'Inter, sans-serif', size: 11, color: palette.text.primary }, }, camera: { - eye: { x: 1, y: -1, z: 1 }, + eye: { x: 1, y: -1, z: 0.7 }, // @ts-expect-error -- missing in types projection: { type: 'orthographic' }, }, + aspectmode: 'manual', + aspectratio: { x: 1.25, y: 1.25, z: 1.25 }, }, autosize: true, width: ref.current?.clientWidth ?? 500,