Hi Dojo,
I’m currently using an Automation Script to send an email with an attached dashboard report. The report is generated and sent entirely from code using the following approach:
MailReportOptions reportOptions = engine.PrepareMailReport(dashboardRelativePath);
reportOptions.SetMailOptions(emailOptions);
engine.SendReport(reportOptions);
This setup works as expected. However, I would like to know if it’s possible to configure the paper format of the generated dashboard report. This needs to be done in the code as well.
In our specific case, customer wants to receive report in A3 format.
Is there a way to control or override the paper size (e.g., A3) from within the Automation Script?
Hi Dario,
At the moment, it’s not yet possible to configure these options within the code of an automation script. A task has already been created to address this.
This is similar to a question that came up earlier: Dashboard PDF Export Options through Automation.