Graph is not getting print in Print Screen to PDF widget

0
I using Print Screen to PDF widget in mendix 9.5 PFB configuration  below are the chart and print Screen widget button inside scroll container   Container config    Print Screen widget button config    Output screen      Printed PDF   Can anyone please suggest how can I print the graph using this widget or any alternate solution for it 
asked
1 answers
0

Depending on your use case, you can also call a JavaScript Action from a nanoflow, something that looks like this:

if (document.getElementsByClassName("widget-charts-loading-indicator").length > 0) {
	mx.ui.info("Please wait a moment until all the charts have loaded", false);
}
else {
	window.print();
}

User can then select the default ‘Print to PDF’ option to save the page to PDF.

answered