diff --git a/src/vis/correlation/CorrelationMatrix.tsx b/src/vis/correlation/CorrelationMatrix.tsx index 11cbe75a1..115bcfe74 100644 --- a/src/vis/correlation/CorrelationMatrix.tsx +++ b/src/vis/correlation/CorrelationMatrix.tsx @@ -1,4 +1,4 @@ -import { Box, Center, Group, Loader, Stack, Text } from '@mantine/core'; +import { Box, Center, Group, Loader, Stack, Text, Tooltip } from '@mantine/core'; import { useResizeObserver } from '@mantine/hooks'; import * as d3 from 'd3v7'; import { scaleBand } from 'd3v7'; @@ -144,9 +144,32 @@ export function CorrelationMatrix({ config, columns }: { config: ICorrelationCon
- - {col.info.name} - + + {col.info.name} + {col.info.description && ( + + {col.info.description} + + )} + + } + arrowSize={6} + withinPortal + withArrow + > + + + {col.info.name} + + {col.info.description && ( + + {col.info.description} + + )} + +