convert angular nvd3 chart as pdf/png

1.6k views Asked by At

I am using angular nvd3 chart for plotting data on charts. I need to export my chart as pdf/png. tried with jdPDF. But It is not rendering css. Can anyone help me out this?

1

There are 1 answers

1
Sajeetharan On

Nvd3 does not come with export functionality. There are three ways which you can do,

(i) Conver the element into SVG, send SVG to Server , convert it to PNG and generate link to download using PhantomJS

(ii) Convert SVG to html5 canvas , then convert canvas to PNG and download it using saveSvgAsPng

Example here