From d2937015f98b7eba82d31b383b57e1bd51b8cf8a Mon Sep 17 00:00:00 2001 From: MarcosPierasNL <pieras.marcos@gmail.com> Date: Thu, 14 Nov 2024 16:37:27 +0100 Subject: [PATCH] chore: remove comments --- .../vis1D/components/CustomChartPlotly.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libs/shared/lib/vis/visualizations/vis1D/components/CustomChartPlotly.tsx b/libs/shared/lib/vis/visualizations/vis1D/components/CustomChartPlotly.tsx index 1a42de7e7..d1bb53326 100644 --- a/libs/shared/lib/vis/visualizations/vis1D/components/CustomChartPlotly.tsx +++ b/libs/shared/lib/vis/visualizations/vis1D/components/CustomChartPlotly.tsx @@ -176,7 +176,7 @@ export const CustomChartPlotly: React.FC<CustomChartPlotlyProps> = ({ font: { family: 'Inter, sans-serif', size: 12, - color: '#374151', // change to gp default color + color: '#374151', }, xaxis: { title: showAxis ? (xAxisLabel ? xAxisLabel : '') : '', @@ -193,12 +193,12 @@ export const CustomChartPlotly: React.FC<CustomChartPlotlyProps> = ({ zeroline: false, }, hoverlabel: { - bgcolor: 'rgba(255, 255, 255, 0.8)', // Custom background color - bordercolor: 'rgba(0, 0, 0, 0.2)', // Custom border color + bgcolor: 'rgba(255, 255, 255, 0.8)', + bordercolor: 'rgba(0, 0, 0, 0.2)', font: { family: 'Inter, sans-serif', - size: 14, // Font size - color: '#374151', // Text color + size: 14, + color: '#374151', }, }, }} -- GitLab