I am trying to integrate https://www.highcharts.com/demo/line-time-series in Outsystems.
I included all the Hichart Lib that needed along with .CSS.
Also, Included the JS code on "onrender" event of the screen as given below
Still I am getting "Uncaught Error: Highcharts error #13" And no graph showing in the UI.
How to fix this error.
I have reproduced the same error and upon checking the screenshot, it isn't necessary to put single quotation's on the input parameters.
Hello Rohan!
It seems that Error #13 occurs when HighCharts.js tries to access an element which is not present in the DOM.
My guess is that the ContainerId you are using still hasn't been rendered on the OnRender event.
I've had challenges similar to this before, and when I can't use the OnRender, i usually add the javascript code on the after fetch of a query, as that's probably on of the last events to run on a screen flow.
Regards!