Inserting a Perspective View into Report Module

I currently have a perspective view with a flex repeater that is dynamically generating multiple apex chart box and whisker plots. I want to be able to take those box and whisker plot apex charts in the flex repeater instances that the user is generating in their perspective session and implement them into report that I am trying to make. Is there a way to take a perspective component and pass it into report module or turn a perspective component into an image or just pass a perspective component into report module. Thank you

No, web technologies and PDF technologies are utterly different.

Is there any way in the report module to be able to implement apex chart / more specifically a box and whisker plot. So that I could recreate the box and whisker plot in report module. If not do you have any other recommendations for alternatives to reports.

I have never tried a box and whisker in a report, but it doesn’t seem like you can. You might could use a print request on the view.

Component Events and Actions | Ignition User Manual

How would I get the print request for the view to be implemented into the report then?

You cannot. The user can simply print the view, guided by the script but with user participation, in lieu of printing a report.

The rendered view only exists in your browser. Report generation occurs in the gateway. There is no mechanism (at all) that would render a view inside the gateway where a report could access it.

1 Like

Embr charts has the ability to save a chart to an image. Can loop through, grab the images and put them into a dataset with the binary data. The report can then use the image component to display them.

I saw that Embr Charts can save images, with Apex charts having dataURI command. But I can’t figure out how to actually call the command to grab the images automatically.