diff --git a/src/components/Asset/AssetActions/Pool/Graph/_constants.ts b/src/components/Asset/AssetActions/Pool/Graph/_constants.ts index 6fe4ac566..38e88fd3e 100644 --- a/src/components/Asset/AssetActions/Pool/Graph/_constants.ts +++ b/src/components/Asset/AssetActions/Pool/Graph/_constants.ts @@ -35,8 +35,8 @@ defaults.animation = { easing: 'easeInOutQuart', duration: 1000 } export const lineStyle: Partial = { fill: false, borderWidth: 2, - pointBorderWidth: 0, - pointRadius: 0, + pointBorderWidth: 1, + pointRadius: 2, pointHoverRadius: 4, pointHoverBorderWidth: 0, pointHitRadius: 2, diff --git a/src/components/Asset/AssetActions/Pool/Graph/_utils.ts b/src/components/Asset/AssetActions/Pool/Graph/_utils.ts index 1396ba033..31bdb9339 100644 --- a/src/components/Asset/AssetActions/Pool/Graph/_utils.ts +++ b/src/components/Asset/AssetActions/Pool/Graph/_utils.ts @@ -28,7 +28,7 @@ export function getOptions(locale: string, isDarkMode: boolean): ChartOptions { hover: { intersect: false }, scales: { y: { display: false, beginAtZero: true }, - x: { display: false } + x: { display: false, offset: true } } } }