Installation

WireBootstrap for Power BI can be downloaded from here.

Sample Project

The download includes a Visual Studio sample project that demonstrates the different ways in which Power BI can be used inside applications developed with WireBootstrap.

Libraries

All of the WireBootstrap for Power BI solution classes are located in the \lib\wire-pbi.js file off the root of the download. To use the library on a page, add a reference to it after a reference to the core WireBootstrap library.


<!-- WireBootstrap Core -->
<script src="./node_modules/@wirebootstrap/wire/wire.js"></script>

<!-- WireBootstrap for Power BI -->
<script src="./lib/wire-pbi.js"></script>

Components

The embed components such as the WireBootstrap for Power BI Tile Component have a dependency on Power BI's embed client API. To use an embed component, add a reference to this library before wire-pbi.js.


<!-- WireBootstrap Core -->
<script src="./node_modules/@wirebootstrap/wire/wire.js"></script>

<!-- Power BI Embed Client API -->
<script src="./node_modules/powerbi-client/dist/powerbi.min.js"></script>

<!-- WireBootstrap for Power BI -->
<script src="./lib/wire-pbi.js"></script>

Last updated