How to save screenshot of div which contains GridView and Charts inside it?

285 Views Asked by At

How to save content of div in pdf or jpg file, which contains GridView and Charts inside it? I have tried using ITextShart, but it is not working for gridview and chart.

1

There are 1 best solutions below

1
Iniamudhan On

Use jsPDF to generate pdf of your div.

https://github.com/MrRio/jsPDF

var doc = new jsPDF({
  //pdf config goes here
})

var myDiv=$('.myDiv').html();
    doc.text(myDiv, 1, 1);
    doc.save('your_div.pdf');