Power BI
Docs HomeProduct SiteSupport
  • WireBootstrap for Power BI
  • Installation
  • Access Tokens
  • Data Connector
  • Tile Component
    • Render
    • Configuration
Powered by GitBook
On this page
  • Class
  • Render
  1. Tile Component

Render

PreviousTile ComponentNextConfiguration

Last updated 3 years ago

Class

The WireBootstrap for Power BI Tile Component extends the 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>
<WireComponent component="wire.pbiTile" config={}>
    <div></div>
</WireComponent>
<div wire-component="wire.pbiTile" v-wire-config=""></div>
<div wire-component="wire.pbiTile" [config]=""></div>
wire.ui.component