Git Product home page Git Product logo

powerbi-angular's Introduction

Deprecation notice

Power BI Angular is deprecated and is no longer supported.

angular-powerbi

Build Status npm version downloads total downloads monthly GitHub tag

Angular module which wraps PowerBI-JavaScript as service and adds a collection of components for each embedded type (Currently only Report is supported) which you can use to easily embed Power BI visuals within your Angular applications.

Demo

http://azure-samples.github.io/powerbi-angular-client

Source: https://github.com/Azure-Samples/powerbi-angular-client

Contents

angular-powerbi.js includes the following:

  • Service: PowerBiService

    (Handles messaging communication between host frame/window and embedded powerbi visual iframes/windows)

  • Web Components

    1. Report Specific Component

      <powerbi-report embed-url="vm.report.embedUrl" access-token="vm.report.accessToken"></powerbi-report>
      
    2. Generic Component

      <powerbi-component options="vm.report"></powerbi-component>
      

Getting started

  1. Install:

    npm install -save angular-powerbi
    
  2. Include the powerbi.js and the angular-powerbi.js file within your app:

    Below we're using absolute urls to npmcdn but you could also use relative urls to local files in node_modules or bundle the two scripts with the rest of your vendor scripts.

    <script src="https://npmcdn.com/[email protected]"></script>
    <script src="https://npmcdn.com/[email protected]"></script>
    
  3. Include the 'powerbi' module as a dependency of your app:

    app.module('app', [
      'powerbi'
    ]);
    
  4. Fetch embed data from the server (embedUrl and accessToken) and make it available on controller scope.

    This would likely require using a factory or service to fetch report data from your local server. Example where the report is resolved when entering route:

    Route: return ReportsService.findById('5dac7a4a-4452-46b3-99f6-a25915e0fe55');

    ReportsService:

    findById(id: string): ng.IPromise<PowerBi.IReport> {
    	return this.$http.get(`${this.baseUrl}/api/reports/${id}`)
    		.then(response => response.data);
    }
    

    If you need a sample server to test you can use the following:

  5. Insert the component in your template where you want to embed the visual:

    <powerbi-report embed-url="vm.report.embedUrl" access-token="vm.report.accessToken" options="vm.reportOptions"></powerbi-report>
    

powerbi-angular's People

Contributors

mattmazzola avatar ali-hamud avatar msftgits avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.