I am looking for an easy way to export a Chart generated with views, in a format that can be easily printed: PDF or JPEG or similar.
Is there a way to do it?
I am looking for an easy way to export a Chart generated with views, in a format that can be easily printed: PDF or JPEG or similar.
Is there a way to do it?
Comments
Comment #1
t.eshqair commentedIam looking for a similar tool
Comment #2
IKE0088 commented+1
Comment #3
zied.ellouze commentedHi
is that you have found a solution
thank you
Comment #4
Pierre.Vriens commentedRefer to the features section of my Comparison of charting modules for charting modules that currently support export to PDF.
Comment #5
arunkumarkThe Google charts are generated at the client side, so we can't save chart as PDF. For the case of exporting need to save as image using client side scripting.
1. Include the Below JS files.
2. Add the canvas tag in your page (
<canvas id="canvas"></canvas>)2. Create a button to generate Image with id of BUTTON_ID
3. Put the below code in our custom JS file
4. Run the code