diff --git a/libs/shared/lib/vis/visualizations/vis1D/components/CustomChartPlotly.tsx b/libs/shared/lib/vis/visualizations/vis1D/components/CustomChartPlotly.tsx index 1a42de7e7cb8755510d238f49f7e93ddf65a1bb3..d1bb53326a2c7d5b17ad85158ffe3c37d0183d39 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', }, }, }}