On my webpage, I have multiple charts displayed in individual bordered boxes. However, upon the initial page load, all the charts exceed the width of their parent container.
An interesting observation is that if I slightly resize the page, everything adjusts back to normal. This issue seems to be specific to the latest version of Chrome as Safari and Firefox display the charts correctly.
Another peculiar problem arises when I clear the cache and perform a hard reload in Chrome - the charts render properly. But upon refreshing the page, the charts overflow outside their designated containers.
I attempted to resolve this using the following CSS snippet found during my research:
.highcharts-container {
width:100% !important;
height:100% !important;
}
Unfortunately, implementing this CSS code caused additional issues with the tooltip functionality in Chrome and other browsers.
If anyone has any suggestions or solutions, please feel free to share them. Any help would be greatly appreciated.