Install via Nuget:
Install-Package Microsoft.PowerBI.JavaScript -Pre
Install from NPM:
npm install -save powerbi-client
Install from Bower:
bower install powerbi-client --save
Installing beta versions:
npm install --save powerbi-client@beta
Add the Power BI script before your apps closing </body> tag
<script src="/bower_components/powerbi-client/dist/powerbi.js"></script>
This exposes two globals Powerbi which is the service class and powerbi which is an instance of the service.
When using PaaS model the tokens issued are for a specific report or tile and the token should be associated with the embed url on the same element to ensure each has a unique token allows embedding multiple reports using the same service instance.
Provide embed configuration using attributes:
<div
powerbi-type="report"
powerbi-access-token="eyJ0eXAiO...Qron7qYpY9MI"
powerbi-report-id="5dac7a4a-4452-46b3-99f6-a25915e0fe55"
powerbi-embed-url="https://embedded.powerbi.com/appTokenReportEmbed"
></div>Embed using javascript:
<div id="reportContainer"></div>var embedConfiguration = {
type: 'report',
accessToken: 'eyJ0eXAiO...Qron7qYpY9MI',
id: '5dac7a4a-4452-46b3-99f6-a25915e0fe55',
embedUrl: 'https://embedded.powerbi.com/appTokenReportEmbed'
};
var $reportContainer = $('#reportContainer');
var report = powerbi.embed($reportContainer.get(0), embedConfiguration);Notice how the attributes and embed configuration hold the same data, just provided to the service in different ways.
When using SaaS model the tokens issued are for a specific user who can view many types of visuals. This means you can add this as a global token reused for all embedded visuals as shown below:
It is not required, but you can assign global token on instane of Power BI servic which will be used as a fallback if a token isn't provided for the specific instance.
<script>
powerbi.accessToken = '{{AccessToken}}';
</script>Provide embed configuration using attributes (notice access token does not need to be supplied because it will fallback to use the global token)
<div
powerbi-type="report"
powerbi-embed-url="https://embedded.powerbi.com/appTokenReportEmbed?reportId=5dac7a4a-4452-46b3-99f6-a25915e0fe55"
></div>Embed using javascript:
var embedConfiguration = {
type: 'report',
id: '5dac7a4a-4452-46b3-99f6-a25915e0fe55',
embedUrl: 'https://embedded.powerbi.com/appTokenReportEmbed'
};
var $reportContainer = $('#reportContainer');
var report = powerbi.embed($reportContainer.get(0), embedConfiguration);Note: You can still choose to supply a SaaS access token (issued by AAD instead of your own service) in the embed configuration. This allows you to have apps that embed reports using SaaS and PaaS authentication.
Also, notice how the embed experience across both SaaS and PaaS is nearly identical except for how you specify the access token.
As of 2.x Power BI will NOT automatically search your apps DOM for Power BI embed components on page load. If you need this behavior you need to configure the service for this.
If your executing before the DOM is ready you can call, to add a listener to renable the default behavior by calling:
powerbi.enableAutoEmbed();
Otherwise, if your executing after the DOM is ready you can call:
powerbi.init();
See: CHANGELOG.md for more details
If your app is dynamically adding new embed components after page load you will need to manually initialize them via JavaScript.
You can do this by getting a reference to the element and calling powerbi.embed(element) similarly to the examples shown above.
All configuration and settings will be provided as attributes prefixed with powerbi-settings- on the containing html element.
-
Filter Pane
FilterPane is enabled/visible by default but can be disabled/hidden by adding the attribute on the element or specifying the setting in the embed configuration:
<div ... powerbi-settings-filter-pane-enabled="false"></div>
var embedConfig = { ... settings: { filterPaneEnabled: false } };
-
Page Navigation
Page navigation is enabled/visible by default but can be disabled/hidden by adding the attribute:
<div ... powerbi-settings-nav-content-pane-enabled="false"></div>
var embedConfig = { ... settings: { navContentPaneEnabled: false } };
The report will automatically be embedded based on the size of it's container. To override the default size of the embeds simply add a CSS class attribute or inline styles for width & height.
(Assumes element with id myReport already contained embedded report)
var element = document.getElementById('#myReport');
var report = powerbi.get(element);
report.fullscreen();Retrieve the existing component associated with the element.
var myPowerBIComponent = powerbi.get(element);
Embedded components will emit events after a command invoked on it has been executed and the operation completed. These commands could be sent programmatically through the SDK or from the user directly interacting with the report.
Example: The user can manually change pages by using the built-in page navigation and clicking on the buttons, or you can programmatically change the page by sending the correct postMessage. In both cases a pageChanged event will occur.
All Embeds
loaded
configuration
Reports
pageChanged
activePage
filterAdded
filter
filterUpdated
filter
filterRemoved
filter
filtersRemoved
target
dataSelected
filter
data (Array of points)
pageName
visualId
It is required to wait for the report to be fully loaded before you can send it commands. This is very similar to waiting for the DOM to be ready before attempting to take action on the elements. In order to do this you must listen for the loaded event and then issue new commands.
report.on('loaded', event => {
report.getPages()
.then(pages => {
this.reportPages = pages;
});
});