Render

Class

The WireBootstrap for Power BI Tile Component extends the wire.ui.component class. As such, it inherits all the base functionality of that class.

To create a new instance of the component, use the wire.pbiTile class.

const tile = new wire.pbiTile();

Render

Render the component using an HTML div element.

<div id="tile"></div>
<script>
    new wire.pbiTile().render("#tile", {});
</script>

Last updated