javascript - Export a Chartist chart to pdf document (jspdf) -


i'm in situation need output chart javascript-generated pdf document using jspdf.

i want convert charts displayed on website.
i'm using chartist this.

is there way of doing this?

you can check out addhtml function jspdf, should give clean copy of canvas

var pdf = new jspdf('p','pt','a4');  pdf.addhtml($('#chartist-chart-1'),function() {     var string = pdf.output('datauristring');     $('.preview-pane').attr('src', string); }); 

http://mrrio.github.io/jspdf/


Comments