Looking for a solution on how to update the code snippet below, as it is no longer supported in the latest version of highcharts:
@Html.Highsoft().GetHighchartsJS(chart, "Grid"+i);
I have tried using the following code instead, but it seems to be not functioning properly with highcharts version 11.4.7:
chart.ID = "Grid" + i;
var renderedHtml = new HighchartsRenderer(chart).RenderHtml();
@Html.Raw(renderedHtml);
I am attempting to load multiple highcharts in a single view.