I am using Highstock V 1.2.5
I want to print chart with some custom HTML details on top of it.
I have created a div in my JSP with custom HTMLand tried adding it before body.appendChild(container);
into exporting.js
But, It didn't work.
Second, I have tried creating HTMl file and adding $("#tab2").html();
where tab2
is my container. But, No luck with that.
When I open the exported HTML its different than what I get from console.log($("#tab2").html())
and the copy it into HTML.
Is there any way to get container HTML into .js
?