将PowerBi的仪表板嵌入Angular6应用程序

时间:2018-10-24 13:35:17

标签: angular azure powerbi

我正在尝试将Pwerbi报告嵌入Angular6应用程序。我读了许多文章,但没有一篇是针对Angular 2到6的。有人可以建议我怎么做吗?

1 个答案:

答案 0 :(得分:0)

您可以利用以下示例将PowerBI报告嵌入角度应用程序中。

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';

// Import your library
import { PowerBIModule } from 'angular2-powerbi';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,

    // Specify your library as an import
    PowerBIModule.forRoot()
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

powerbi-angular-client