A set of jQuery plugins to seamlessly embed Power BI components into web based applications
Перейти к файлу
Matt Mazzola 0a5e5d0053 Update LICENSE with OSS project name. 2016-06-07 13:26:36 -07:00
dist Update gulp tasks with runSequence. Update tests to use typescript, and fix related gulp test task. 2016-04-26 14:51:02 -07:00
src Update gulp tasks with runSequence. Update tests to use typescript, and fix related gulp test task. 2016-04-26 14:51:02 -07:00
test Update dependency to 2.0.0-beta.5 which has reset and typings fix. 2016-04-27 16:41:56 -07:00
.gitignore Update gulp tasks with runSequence. Update tests to use typescript, and fix related gulp test task. 2016-04-26 14:51:02 -07:00
LICENSE.txt Update LICENSE with OSS project name. 2016-06-07 13:26:36 -07:00
README.md Update README.md with clearer instructions. 2016-04-21 13:39:20 -07:00
bower.json Fix bower.json and remove unneeded resolution 2016-04-27 16:43:58 -07:00
gulpfile.js Update gulp tasks with runSequence. Update tests to use typescript, and fix related gulp test task. 2016-04-26 14:51:02 -07:00
karma.conf.js Initial Commit. Setup sample app to test jquery.powerbi.js plugin which wraps PowerBI-JavaScript library. 2016-04-07 15:49:07 -07:00
package.json 1.0.0-beta.4 2016-04-27 16:47:49 -07:00
tsconfig.json Update gulp tasks with runSequence. Update tests to use typescript, and fix related gulp test task. 2016-04-26 14:51:02 -07:00
typings.json Update gulp tasks with runSequence. Update tests to use typescript, and fix related gulp test task. 2016-04-26 14:51:02 -07:00

README.md

PowerBI-JQuery

JQuery plugin which wraps the PowerBI-Javascript library and accepts configuration object directly. This makes embedding Power BI visuals similar to using other jQuery plugins.

For a demonstration of this library see the sample: powerbi-sample-client-jquery (COMING SOON!)

Getting started:

Installation

Install via NPM:

npm install --save jquery-powerbi

Install via Bower:

bower install --save jquery-powerbi

Include scripts:

<script src="powerbi.js"></script>
<script src="jquery.js"></script>
<script src="jquery.powerbi.js"></script>

Note: You can find out more about powerbi.js from the PowerBI-JavaScript repository.

Embed report in element using plugin

Index.html

<div id="reportContainer"></div>

App.js

$(() => {
	var $reportContainer = $('#reportContainer');

	var reportUrl = 'http://powerbipaasapi.azurewebsites.net/api/reports/63f50faa-f1fe-40ed-ab33-67fb09b80251';
		
	fetch(reportUrl)
		.then(response => response.json())
		.then(report => {
			var reportConfig = $.extend({ type: 'report' }, report);
			$reportContainer.powerbi(reportConfig);
		});
});

Note the object that you pass to the powerbi plugin function must have the following properties but there may be more:

{
	"type": "report",
	"accessToken": "eyJ0eXA...<removed>...D8MFM",
	"embedUrl": "https://embedded.powerbi.com/appTokenReportEmbed?reportId=5dac7a4a-4452-46b3-99f6-a25915e0fe55"
}

Note: The type property which indicates the type of the object you are embedding. In this case it we are embedding a report so the type is 'report'. There are other options that can be passed such as filterPaneEnabled, see the PowerBI-JavaScript repository for more information.