Highcharts Don't Render In Internet Explorer 11
I am making a dashboard in a Sharepoint html page. My charts render and display correctly in Chrome, but only the pie chart renders in Internet Explorer 11. If I create a static ar
Solution 1:
The problem is the console.log()
line. In Internet Explorer the console is only available when the debugger is opened and an error is thrown if it is not.
Replace console.log(tbsOutput);
with alert(tbsOutput);
and it should then work as expected.
Solution 2:
The date that Microsoft SharePoint passes in is seen as invalid by the JavaScript running in Microsoft Internet Explorer. I brought the date in as a string, parsed it, and pushed it to a JavaScript date object and everything works perfectly!
Post a Comment for "Highcharts Don't Render In Internet Explorer 11"