# powerbi-client-angular
Power BI Angular component. This library lets you embed Power BI reports, dashboards, tiles, report visuals, Q&As and paginated reports in your Angular application.
## Quick Start
### Import
*Import the 'PowerBIEmbedModule' inside your target module:*
```ts
import { PowerBIEmbedModule } from 'powerbi-client-angular';
@NgModule({
imports: [
...
...
PowerBIEmbedModule
],
exports: ...,
declarations: ...
})
```
### Embed a Power BI report
```ts
",
embedUrl: "
```
### How to [bootstrap a PowerBI report](https://docs.microsoft.com/javascript/api/overview/powerbi/bootstrap-better-performance):
```ts
```
__Note__: To embed the report after [bootstrapping](https://docs.microsoft.com/javascript/api/overview/powerbi/bootstrap-better-performance), update the embedConfig (with at least accessToken and embedUrl).
## Embedding other Power BI artifacts
The library is offering the following components that can be used to embed various Power BI artifacts.
|Component|Selector to use for embedding|
|:------|:------|
|PowerBIReportEmbedComponent|``````|
|PowerBIDashboardEmbedComponent|``````|
|PowerBITileEmbedComponent|``````|
|PowerBIVisualEmbedComponent|``````|
|PowerBIQnaEmbedComponent|``````|
|PowerBIPaginatedReportEmbedComponent|``````|
You can embed other artifacts such as:
```ts
"
[cssClassName] = ""
[eventHandlers] = "
```
### Demo
This demo includes an Angular application that embeds a sample report using the _PowerBIReportEmbed_ component.
It demonstrates the complete flow from bootstrapping the report, to embedding and updating the embedded report.
It also demonstrates using the *powerbi report authoring* library, by enabling the user to change the type of a report visual from a report using the "Change visual type" button.
It also sets a 'DataSelected' event.
To run the demo on localhost, run the following command:
```
npm run demo
```
Redirect to http://localhost:4200/ to view in the browser.
### Usage
|Use case|Details|
|:------|:------|
|Embed Power BI|To embed your powerbi artifact, pass the component with at least type, embedUrl and accessToken in embedConfig property.|
|Apply style class|Pass the name(s) of style classes to be applied to the embed container div to the cssClassName property.|
|Set event handlers|Pass a map object of event name (string) and event handler (function) to the _eventHandlers_ prop.
__Key__: Event name
__Value__: Event handler method to be triggered
Event handler method takes two optional parameters:
*First parameter*: Event
*Second parameter*: Reference to the embedded entity
List of supported events is given here: [Additional events](#supported-events)|
|Reset event handlers|To reset event handler for an event, set the event handler's value as null in the eventHandlers map of properties.|
|Bootstrap Power BI|To [bootstrap your powerbi entity](https://docs.microsoft.com/javascript/api/overview/powerbi/bootstrap-better-performance), pass the property *embedConfig* to the component without _accessToken_
__Note__: _embedConfig_ should at least contain __type__ of the powerbi entity being embedded.
Available types: "report", "dashboard", "tile", "visual" and "qna".
Refer to _How to bootstrap a report_ section in [Quick Start](#quick-start).
__Note__: A paginated report cannot be bootstrapped.|
|Using with PowerBI Report Authoring|1. Install [powerbi-report-authoring](https://www.npmjs.com/package/powerbi-report-authoring) as an npm dependency.
2. Use the report authoring APIs using the embedded report's instance.|
|Phased embedding (Report type only)|Set the phasedEmbedding property value to `true`
Refer to the [Phased embedding article](https://docs.microsoft.com/javascript/api/overview/powerbi/phased-embedding).|
__Note__: Supported browsers are _Edge_, _Chrome_, and _Firefox_.
### Properties accepted by Components
|Property|Description|Supported by|
|:-------|:----------|:----------|
|embedConfig|Configuration for embedding the PowerBI entity (required)|All|
|phasedEmbedding|Phased embedding flag (optional)|Report|
|eventHandlers|Map of pair of event name and its handler method to be triggered on the event (optional)|Report, Dashboard, Tile, Visual, Qna|
|cssClassName|CSS class to be set on the embedding container (optional)|All|
|service|Provide the instance of PowerBI service (optional)|All|
## Supported Events
### Events supported by various Power BI entities:
|Entity|Event|
|:----- |:----- |
| Report | "buttonClicked", "commandTriggered", "dataHyperlinkClicked", "dataSelected", "loaded", "pageChanged", "rendered", "saveAsTriggered", "saved", "selectionChanged", "visualClicked", "visualRendered" |
| Dashboard | "loaded", "tileClicked" |
| Tile | "tileLoaded", "tileClicked" |
| QnA | "visualRendered" |
### Event Handler to be used with Map
```ts
type EventHandler = (event?: service.ICustomEvent, embeddedEntity?: Embed) => void | null;
```
## Using supported SDK methods for Power BI artifacts
### Import
*Import the 'PowerBIReportEmbedComponent' inside your targeted component file:*
```ts
import { PowerBIReportEmbedComponent } from 'powerbi-client-angular';
```
### Initialize inside the Component
```ts
@ViewChild(PowerBIReportEmbedComponent) reportObj!: PowerBIReportEmbedComponent;
```
### Use
You can use ```reportObj``` to call supported SDK APIs.
There are two ways in which ```reportObj``` can be used:
* Expose the ```Report``` object globally.
Steps:
1. Create one class variable, for example, ```report```.
2. Implement the ``` AfterViewInit ``` hook for the component class.
```ts
class AppComponent implements AfterViewInit { ... }
```
3. Define the ```ngAfterViewInit``` method as follows:
```ts
ngAfterViewInit(): void {
this.report = this.reportObj.getReport();
}
```
4. this.report points to the Report object from the library and can be used to call SDK methods such as, ```getVisuals```, ```getBookmarks``` etc.
```ts
async getReportPages(): Page[] {
// this.report is a class variable, initialized in step 3
const pages = await this.report.getPages();
console.log(pages);
}
```
* Use ```reportObj``` inside a class method.
This approach will not expose the Report object globally, instead ```reportObj``` would be available locally in the function.
Example:
```ts
async getReportPages(): Page[] {
const report = this.reportObj.getReport();
const visuals = await report.getPages();
console.log(visuals);
}
```
## Note
The library supports Angular applications having version **>= 13**.
## Dependencies
powerbi-client (https://www.npmjs.com/package/powerbi-client)
## Peer Dependencies
@angular/common (https://www.npmjs.com/package/@angular/common)
@angular/core (https://www.npmjs.com/package/@angular/core)
## Trademarks
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow [Microsoft’s Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general). Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party’s policies.
## Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit .
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repositories using our CLA.
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments
## Data Collection.
The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications.
If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft’s privacy statement.
Our privacy statement is located at [Microsoft Privacy Statement](https://privacy.microsoft.com/en-us/privacystatement). You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.
## Support
- **Feature Requests:** Submit your ideas and suggestions to the [Fabric Ideas Portal](https://ideas.fabric.microsoft.com/), where you can also vote on ideas from other developers.
- **Bug Reports and Technical Assistance:** Visit the [Fabric Developer Community Forum](https://community.fabric.microsoft.com/t5/Developer/bd-p/Developer). Our team and community experts are ready to assist you.
- **Additional Support:** Contact your account manager or reach out to the [Fabric Support Team](https://support.fabric.microsoft.com/en-us/support/).