Tooltip: Add tooltip support to Histogram (#89196)

Co-authored-by: Leon Sorokin <leeoniya@gmail.com>
This commit is contained in:
Adela Almasan
2024-06-14 10:23:25 -06:00
committed by GitHub
parent f5468542ba
commit c3b772618a
7 changed files with 142 additions and 16 deletions

View File

@@ -28,7 +28,7 @@ export const VizTooltipContent = ({
const scrollableStyle: CSSProperties = scrollable
? {
maxHeight: maxHeight,
overflowY: 'scroll',
overflowY: 'auto',
}
: {};

View File

@@ -47,7 +47,7 @@ export const VizTooltipRow = ({
maxHeight: 55,
whiteSpace: 'wrap',
wordBreak: 'break-word',
overflowY: 'scroll',
overflowY: 'auto',
}
: {
whiteSpace: 'wrap',