Download, Print option in PowerBI embedded report with Angular7
I have created PowerBI report and It has been embedded to my angular7 client application by registering the application with Azure Active Directory(AAD). It embeds perfectly. I want to allow that embedded report to be downloaded, printed by the user of my client application. Following is my Angulr7 code to embed the PowerBI report. showReport() { // Report's Secured Token let accessToken = 'myAccessToken'; // Embed URL let embedUrl = 'embedUrl'; // Report ID let embedReportId = 'embedReportId'; let config = { type: 'report', accessToken: accessToken, embedUrl: embedUrl, id: embedReportId,