Following code i tried to render and export Highchart SVG Image.
I am able to get image downloaded while I Haven't hovered over my image(while there was no tooltip got added)
But when i hover over image there is a new element get added which contains tooltip of highchart. and then I'm unable to export Image through canvg after that.
var s = new XMLSerializer().serializeToString($(rawSVGHTML)[0]);
var canvas = document.createElement("canvas");
cctx = canvas.getContext("2d");
canvas.width = dimention.width;
canvas.height = dimention.height;
cctx.drawSvg(s); //It is a function from Canvg library