Need a special offer?Find out if your project fits.
+

is there a way to print multiple flexmonster charts in one page?

Answered
Michael T asked on September 9, 2021

is there a way to print out multiple charts laid out together?
e.g. printing this 'dashboard' on one PDF page
https://jsfiddle.net/flexmonster/npsz5rck/
 

1 answer

Public
Nadia Khodakivska Nadia Khodakivska Flexmonster September 13, 2021

Hi, Michael!
 
Thank you for your question.
 
Each instance of the component exports its own report and there is no option of printing multiple Flexmonster charts.
However, we would like to suggest you some approaches:

  1. Using internal print tool of your browser to print the page or export into PDF with all necessary charts.
  2. Export each chart into HTML string or HTMLCanvasElement using exportTo API call with destinationType: "plain". For example,
pivot.exportTo("html", {
destinationType: "plain"
}

Next, you can connect all of your charts into one HTML document and send it to print.
 
Please let us know if any of these approaches can work for you.

 
Kind regards,
Nadia

Please login or Register to Submit Answer