diff --git a/public/components/event_analytics/explorer/visualizations/index.tsx b/public/components/event_analytics/explorer/visualizations/index.tsx index 6fe4787f7..24e57d23f 100644 --- a/public/components/event_analytics/explorer/visualizations/index.tsx +++ b/public/components/event_analytics/explorer/visualizations/index.tsx @@ -89,9 +89,15 @@ export const ExplorerVisualizations = ({ } }; + const syntheticResize = () => { + const event = window.document.createEvent('UIEvents'); + event.initUIEvent('resize', true, false, window, 0); + window.dispatchEvent(event); + }; + return (