printing a SVG Chart
Hello,
I am using oracle 10g apex 3.2.
I am using SVG Chart in my page.
I want to print the SVG Chart.
So i have a print button which calls the following js function.
function PrintAndGo(loc)
{
var win=window.open(loc);
win.history.go(0);
win.window.print();
win.focus();
}
But the problem is i print that page to a Primo PDF page , in that i cant see the chart it's just comes as empty space there.
Why is that so?
Thanks