I am currently using a Highcharts column chart and I am looking to make it a fully responsive chart with 100% width. The container for the chart is a simple <div>
without any additional formatting. Upon document load, the chart remains at a fixed width of 600x400px. However, when I resize the window or switch to another browser tab, the chart automatically adjusts to fill the width and becomes a full-width responsive chart as desired. Unfortunately, upon page reload, it reverts back to the fixed width. I have tried setting the width for both the container and the chart itself, but to no avail. The only way I found that works is by moving the container div one level above the parent div. Is there a solution to ensure the chart becomes full width on page load as well?
Thank you