SlideShare a Scribd company logo
1 of 48
Power BI for Developers
Developers guide to extending Power BI
PBI MCR JUNE 2019 - Jan Pieter Posthuma
• Microsoft Data Consultant
• DataScenarios – Data Consultancy Company
• Architect roles at multiple projects
• Creator of Power BI Custom Visuals
• HierarchySlicer [∞]
• Box and Whisker chart [∞]
• D3js Visual [∞]
• Contact
• mail@datascenarios.nl
• https://twitter.com/jppp
• https://linkedin.com/in/jpposthuma
• https://github.com/liprec
Jan Pieter Posthuma
2© 2019 – DataScenarios
• Introduction
• Power BI for Developers
• Power BI Embedded
• Power BI Custom Visuals
• Power BI Custom Connectors
3© 2019 – DataScenarios
Outline
What next?
© 2019 – DataScenarios 4
Build a Microsoft Power BI
Embedded Solution
Power BI for Developers series
Jan Pieter Posthuma
• Introduction
• Fundamentals
• Authentication
• Demo – JavaScript API
• Roadmap
6© 2019 – DataScenarios
Session Outline
Introduction
Build a Microsoft Power BI Embedded Solution
© 2019 – DataScenarios 7
• Publish to web
• Publicly available (no license)
• Anonymous access
• Embed in SharePoint Online
• Signing covered by SPS
• Secure Embed
• Users prompted to Sign in
• Power BI account needed
• Embedded analytics
• Capacity via Azure (or Premium)
• No end user license needed
8© 2019 – DataScenarios
Embedding with Power BI
• Power BI is a software-as-a-service analytics solution that gives
organizations a single view of their most critical business data.
• With Power BI Embedded embed intelligence can be added to
apps using the Power BI APIs.
• Developers can spend time focusing on their solution to meet
customer demands, instead of developing visual analytics features
9© 2019 – DataScenarios
Embedded Analytics – Power BI Embedded
Why Power BI Embedded
For your
business
Faster time to market
Stand out in the crowd
Flexible pricing and no
end user licensing
Adopt decades of
analytics expertise
For your
developers
Focus on your product
Respond to customers
Library of APIs and SDKs
Total control of visuals and
user experience
For your
customers
Explore data from any
device
Make decisions in context
Take action from the visual
© 2019 – DataScenarios 10
Feature
Power BI Embedded
(A SKUs)
Power BI Premium
Capacity
(EM SKUs)
Power BI Premium
Capacity
(P SKUs)
Embed artifacts from a Power BI App
workspace
Azure capacity
(A1: ~$735.913/month)
Office 365 capacity
(EM1: ~$625/month)
Office 365 capacity
(P1: $ 4,995/month)
Consume Power BI reports in an
Embedded application
Consume Power BI reports in
SharePoint
Consume Power BI reports in
Dynamics
Consume Power BI reports in Teams
(excludes mobile app)
Access content with a FREE Power BI
license in Powerbi.com and Power BI
mobile
Access content with a FREE Power BI
license embedded in MS Office apps
11© 2019 – DataScenarios
Power BI Embedded SKUs
Fundamentals
Build a Microsoft Power BI Embedded Solution
© 2019 – DataScenarios 12
Manage all analytic objects
Automate onboarding new customers
Embed reports, dashboards, tiles and visuals
Power BI APIs
Azure APIs for automation
Create and manage capacities
Scale up/down at any time
Monitor performance with Metrics & Alerts
Data
Platform
Programmatic
All data sources supported by
Power BI
REST APIs Azure Resource Manager API
Microsoft Azure
Power BI JavaScript API
Enable client-side integration and interaction
Power BI
The Power BI Embedded API surface
13© 2019 – DataScenarios
Your app
Power BI APIs
Import
Get
reports
Get
dashboards
Get
dashboard
tiles
Push
data
Embed
Embed a
specific report
Enable/
disable the
filter pane
Load a
default report
page
Clone
report and
dashboard
Add/delete
workspaces
Set data
source
connections
Refresh
dataset
Gateway
manage-ment
APIs
Export PBIX
files
Update
report
Rebind
report
Add/delete
workspace
users
Clone
tile
Dataset
manage-ment
APIs
Datasource
manage-ment
APIs
Monitoring
Scale
up/down
(ARM)
Pause resume
(ARM)
Buy capacity
(ARM)
Capacity
manage-ment
Print & reload
events
Page
navigation
Filter reports
Edit
reports
Data selection
events
Set visual
location
in report
Set
visual size
Set visual
filters
Set local
language
Page changed
event
Tile clicked
event
Report
rendered
event
Q&A question
event
Set Q&A
question
Automate
Extend visual
options menu
Extend visual
context menu
Set Colour
Themes
14
Customize Manage
Capacity
Hide/Show
menu items
Sort custom
menu items
Disable/
Enable menu
items
© 2019 – DataScenarios 14
Typical SaaS application
• Each app drives specific value
for users
• Analytics are most valued when
integrated into the application
workflow
© 2019 – DataScenarios 15
Data connectivity
• Over 90 data connectors
supported
• Direct Query | Cached | Real-
time | Cloud | On premises
• Manage datasets, data
sources, connections strings
with Power BI API
© 2019 – DataScenarios 16
Building in-context analytics
• Integrate analytics seamlessly
into the app workflow
• Use bi-directional API to
increase engagement
© 2019 – DataScenarios 17
Power BI JavaScript API
© 2019 – DataScenarios 18
Authentication
Build a Microsoft Power BI Embedded Solution
© 2019 – DataScenarios 19
• Registration Tool: https://dev.powerbi.com/apps
• Application Type: Server-side web application
• Choose Power BI APIs
needed
• End result:
• Application ID
• Application secret
20© 2019 – DataScenarios
Register a server-side web application
• Register a server-side web application: Application ID and secret
• Use security group
(Recommended)
• Config PowerBI.com
service
21© 2019 – DataScenarios
Service principal with Power BI Embedded
22© 2019 – DataScenarios
Row-level security
• Authenticated user (via AAD or custom)
• Roles and rules added via Power BI desktop file
• Identity via live connections:
• On-premises / Azure Analysis Service: =CUSTOMDATA()
• Azure SQL Server (Power BI Premium): USER_NAME()
• Create access_token with:
• username
• role(s)
• dataset
Users Roles Rules
Demo – JavaScript API
Build a Microsoft Power BI Embedded Solution
© 2019 – DataScenarios 23
How to start with Power BI Embedded?
24© 2019 – DataScenarios
Power BI Desktop
Capacity- based licensing
Setup embedded solution REST & JS APIs
Roadmap
Build a Microsoft Power BI Embedded Solution
© 2019 – DataScenarios 25
• Service Principle based authentication (GA)
• Embed & automate paginated reports
• Quick visual creator API
• Improved deployment through dynamic binding of reports to
datasets
26© 2019 – DataScenarios
Roadmap
© 2019 – DataScenarios 27
© 2019 – DataScenarios
Build a Microsoft Power BI
Custom Visual
Power BI for Developers series
Jan Pieter Posthuma
• Introduction
• Basic developing
• Demo – Custom Visuals
• Advanced developing
• Demo – External libraries
• Roadmap
30© 2019 – DataScenarios
Session Outline
Introduction
Build a Microsoft Power BI Custom Visual
© 2019 – DataScenarios 31
What are custom visuals?
© 2019 – DataScenarios 32
Power BI Custom Visuals Platform
Developer tool
Open Source
APIs & Utils
Import D3, jQuery,
WebGL, etc…
https://github.com/Microsoft/PowerBI-visuals-tools
Debugging and
testing
See what you code
Sideload into Power BI to
test anytime, anywhere
Marketplace
Developer portal
Integrated into PBI clients
Global reach –
Monitize via ‘In-App
Purchase’ (IAP)
R scripting
Advanced analytics
visualizations
Interactive
© 2019 – DataScenarios 33
• Intuitive visual consumption of
data
• Over 150 visuals in the
marketplace
• Build or buy tailor-made visuals
• Enterprise ready
• Differentiator in the market
The Business Value of Custom Visuals
© 2019 – DataScenarios 34
Why Develop Custom Visuals?
Enrich your solution portfolio
Eye catching reports and
dashboards – Go beyond
the usual pie/bar charts
Build a unique expertise in the
BI solution providers domain
© 2019 – DataScenarios 35
Basic development
Build a Microsoft Power BI Custom Visual
© 2019 – DataScenarios 36
• NodeJS 5.0+ Required. (v5 – 8 are confirmed to work)
• https://nodejs.org/
• PowerBI-Visuals-Tools
• npm install -g powerbi-visuals-tools
• Create and install user SSL certificate: https://github.com/Microsoft/PowerBI-
visuals/blob/master/tools/CertificateSetup.md
• Visual Studio Code
• https://code.visualstudio.com/download
• PBIViz CLI addin:
https://marketplace.visualstudio.com/items?itemName=liprec.vscode-start-pbiviz
• Enable ‘Developer Visual’ in Power BI user
settings
Tools needed
© 2019 – DataScenarios 37
Custom Visuals Core Concepts
© 2019 – DataScenarios 38
Custom Visuals Core Concepts
© 2019 – DataScenarios 39
Create Code Test Package Submit
APIs PowerBI.com
Your favorite IDE
FeedbackLearn more: https://github.com/Microsoft/PowerBI-visuals
Custom Visual Lifecycle
© 2019 – DataScenarios 40
Basic development – Demo
Build a Microsoft Power BI Custom Visual
© 2019 – DataScenarios 41
Advanced development
Build a Microsoft Power BI Custom Visual
© 2019 – DataScenarios 42
• First class citizens:
• D3js – Graphical library for ‘Data-Driven Documents’.
• Lodash – Library to take the hassle out of working with arrays, objects,
strings, numbers, etc.
• Helper classes to support common UI operations, e.g.:
• powerbi-visuals-utils-formattingutils – valueFormatting, TextProperties, …
• powerbi-visuals-utils-dataviewutils – getObject, DataViewObjectsParser
• Change upcoming powerbi-utils (v3.x):
• ECMAScript 2015 (ES6) modules support: use simgle ES modules instead
of full library
43© 2019 – DataScenarios
Custom Visuals External Libraries
• Power BI Test utils:
• powerbi-visuals-utils-testutils – Mocks and fakes in order to simplify unit
testing
• karma – Test JavaScript code in multiple real browsers.
44© 2019 – DataScenarios
Custom Visuals Testing
Roadmap
Build a Microsoft Power BI Custom Visual
© 2019 – DataScenarios 45
• API v2.6
• Support subtotals customization
• API v2.5
• Analytics Pane Support
• SelectionIdBuilder supports withMatrixNode and withTable methods
• API v2.3
• Landing Page API
• Tuple filter API (Multi column filter)
• Rendering Events API
• API v2.2
• Restoring JSON Filter from DataView
• ContextMenu API
• API v2.1
• Significant performance enhancements: Faster loading times, Significantly smaller
memory footprint, Optimized data and event transactions
46© 2019 – DataScenarios
What’s new in custom visuals API’s
© 2019 – DataScenarios 47
© 2019 – DataScenarios

More Related Content

What's hot

Intro for Power BI
Intro for Power BIIntro for Power BI
Intro for Power BIMartin X
 
Microsoft Power BI
Microsoft Power BIMicrosoft Power BI
Microsoft Power BIGeetika
 
Power BI Desktop | Power BI Tutorial | Power BI Training | Edureka
Power BI Desktop | Power BI Tutorial | Power BI Training | EdurekaPower BI Desktop | Power BI Tutorial | Power BI Training | Edureka
Power BI Desktop | Power BI Tutorial | Power BI Training | EdurekaEdureka!
 
Introduction to Microsoft Power BI
Introduction to Microsoft Power BIIntroduction to Microsoft Power BI
Introduction to Microsoft Power BIExilesoft
 
Power BI Tutorial For Beginners | Power BI Tutorial | Power BI Demo | Power B...
Power BI Tutorial For Beginners | Power BI Tutorial | Power BI Demo | Power B...Power BI Tutorial For Beginners | Power BI Tutorial | Power BI Demo | Power B...
Power BI Tutorial For Beginners | Power BI Tutorial | Power BI Demo | Power B...Edureka!
 
What is Power BI
What is Power BIWhat is Power BI
What is Power BINaseeba P P
 
Power BI Training | Getting Started with Power BI | Power BI Tutorial | Power...
Power BI Training | Getting Started with Power BI | Power BI Tutorial | Power...Power BI Training | Getting Started with Power BI | Power BI Tutorial | Power...
Power BI Training | Getting Started with Power BI | Power BI Tutorial | Power...Edureka!
 
Power bi (1)Power BI Online Training Hyderabad | power bi online training ben...
Power bi (1)Power BI Online Training Hyderabad | power bi online training ben...Power bi (1)Power BI Online Training Hyderabad | power bi online training ben...
Power bi (1)Power BI Online Training Hyderabad | power bi online training ben...Big IT Trainings
 
What Is Power BI? | Introduction To Microsoft Power BI | Power BI Training | ...
What Is Power BI? | Introduction To Microsoft Power BI | Power BI Training | ...What Is Power BI? | Introduction To Microsoft Power BI | Power BI Training | ...
What Is Power BI? | Introduction To Microsoft Power BI | Power BI Training | ...Edureka!
 
Microsoft power bi
Microsoft power biMicrosoft power bi
Microsoft power bitechpro360
 
What is Power BI
What is Power BIWhat is Power BI
What is Power BIDries Vyvey
 
35 power bi presentations
35 power bi presentations35 power bi presentations
35 power bi presentationsSean Brady
 
Power BI Zero to Hero by Rajat Jaiswal
Power BI Zero to Hero by Rajat JaiswalPower BI Zero to Hero by Rajat Jaiswal
Power BI Zero to Hero by Rajat JaiswalIndiandotnet
 
Power BI Made Simple
Power BI Made SimplePower BI Made Simple
Power BI Made SimpleJames Serra
 
Introduction to Power BI
Introduction to Power BIIntroduction to Power BI
Introduction to Power BIHARIHARAN R
 

What's hot (20)

Power BI Overview
Power BI Overview Power BI Overview
Power BI Overview
 
Power BI
Power BIPower BI
Power BI
 
Intro for Power BI
Intro for Power BIIntro for Power BI
Intro for Power BI
 
Introduction to Power BI
Introduction to Power BIIntroduction to Power BI
Introduction to Power BI
 
Microsoft Power BI
Microsoft Power BIMicrosoft Power BI
Microsoft Power BI
 
Power BI Desktop | Power BI Tutorial | Power BI Training | Edureka
Power BI Desktop | Power BI Tutorial | Power BI Training | EdurekaPower BI Desktop | Power BI Tutorial | Power BI Training | Edureka
Power BI Desktop | Power BI Tutorial | Power BI Training | Edureka
 
Introduction to Microsoft Power BI
Introduction to Microsoft Power BIIntroduction to Microsoft Power BI
Introduction to Microsoft Power BI
 
Power BI Tutorial For Beginners | Power BI Tutorial | Power BI Demo | Power B...
Power BI Tutorial For Beginners | Power BI Tutorial | Power BI Demo | Power B...Power BI Tutorial For Beginners | Power BI Tutorial | Power BI Demo | Power B...
Power BI Tutorial For Beginners | Power BI Tutorial | Power BI Demo | Power B...
 
Power BI Ecosystem
Power BI EcosystemPower BI Ecosystem
Power BI Ecosystem
 
What is Power BI
What is Power BIWhat is Power BI
What is Power BI
 
Power bi overview
Power bi overview Power bi overview
Power bi overview
 
Power BI Training | Getting Started with Power BI | Power BI Tutorial | Power...
Power BI Training | Getting Started with Power BI | Power BI Tutorial | Power...Power BI Training | Getting Started with Power BI | Power BI Tutorial | Power...
Power BI Training | Getting Started with Power BI | Power BI Tutorial | Power...
 
Power bi (1)Power BI Online Training Hyderabad | power bi online training ben...
Power bi (1)Power BI Online Training Hyderabad | power bi online training ben...Power bi (1)Power BI Online Training Hyderabad | power bi online training ben...
Power bi (1)Power BI Online Training Hyderabad | power bi online training ben...
 
What Is Power BI? | Introduction To Microsoft Power BI | Power BI Training | ...
What Is Power BI? | Introduction To Microsoft Power BI | Power BI Training | ...What Is Power BI? | Introduction To Microsoft Power BI | Power BI Training | ...
What Is Power BI? | Introduction To Microsoft Power BI | Power BI Training | ...
 
Microsoft power bi
Microsoft power biMicrosoft power bi
Microsoft power bi
 
What is Power BI
What is Power BIWhat is Power BI
What is Power BI
 
35 power bi presentations
35 power bi presentations35 power bi presentations
35 power bi presentations
 
Power BI Zero to Hero by Rajat Jaiswal
Power BI Zero to Hero by Rajat JaiswalPower BI Zero to Hero by Rajat Jaiswal
Power BI Zero to Hero by Rajat Jaiswal
 
Power BI Made Simple
Power BI Made SimplePower BI Made Simple
Power BI Made Simple
 
Introduction to Power BI
Introduction to Power BIIntroduction to Power BI
Introduction to Power BI
 

Similar to Power BI for Developers

Extending Power BI with your own custom visual
Extending Power BI with your own custom visualExtending Power BI with your own custom visual
Extending Power BI with your own custom visualJan Pieter Posthuma
 
The New Basics of Business Intelligence Lesson 5: Embedded Analytics
The New Basics of Business Intelligence Lesson 5: Embedded AnalyticsThe New Basics of Business Intelligence Lesson 5: Embedded Analytics
The New Basics of Business Intelligence Lesson 5: Embedded AnalyticsZoomdata
 
VBI View 2.0
VBI View 2.0VBI View 2.0
VBI View 2.0Visual_BI
 
Power bi proof of concept
Power bi proof of conceptPower bi proof of concept
Power bi proof of conceptharrow812arhed
 
South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...
South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...
South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...Vishal Pawar
 
Expanding the capabilities of SAC with App Design
Expanding the capabilities of SAC with App DesignExpanding the capabilities of SAC with App Design
Expanding the capabilities of SAC with App DesignVisual_BI
 
Learn why Microsoft Power BI is an Undisputed Market Leader?
Learn why Microsoft Power BI is an Undisputed Market Leader?Learn why Microsoft Power BI is an Undisputed Market Leader?
Learn why Microsoft Power BI is an Undisputed Market Leader?Visual_BI
 
A deep dive session on Tableau
A deep dive session on TableauA deep dive session on Tableau
A deep dive session on TableauVisual_BI
 
Leveraging Microsoft Power BI To Support Enterprise Business Intelligence
Leveraging Microsoft Power BI To Support Enterprise Business IntelligenceLeveraging Microsoft Power BI To Support Enterprise Business Intelligence
Leveraging Microsoft Power BI To Support Enterprise Business IntelligenceRightpoint
 
.NET Fest 2019. Евгений Полоничко. Power BI embedded
.NET Fest 2019. Евгений Полоничко. Power BI embedded.NET Fest 2019. Евгений Полоничко. Power BI embedded
.NET Fest 2019. Евгений Полоничко. Power BI embeddedNETFest
 
Traditional BI VS Self Service BI
Traditional BI VS Self Service BITraditional BI VS Self Service BI
Traditional BI VS Self Service BIVisual_BI
 
Azure advanced analytics for SAP customers
Azure advanced analytics for SAP customersAzure advanced analytics for SAP customers
Azure advanced analytics for SAP customersVisual_BI
 
Landing Self Service Analytics using Microsoft Azure & Power BI
Landing Self Service Analytics using Microsoft Azure & Power BILanding Self Service Analytics using Microsoft Azure & Power BI
Landing Self Service Analytics using Microsoft Azure & Power BIVisual_BI
 
SqlSaturday#699 Power BI - Create a dashboard from zero to hero
SqlSaturday#699 Power BI - Create a dashboard from zero to heroSqlSaturday#699 Power BI - Create a dashboard from zero to hero
SqlSaturday#699 Power BI - Create a dashboard from zero to heroVishal Pawar
 
Microsoft & Pyramid Analytics: What the Microsoft and Pyramid Analytics' Stra...
Microsoft & Pyramid Analytics: What the Microsoft and Pyramid Analytics' Stra...Microsoft & Pyramid Analytics: What the Microsoft and Pyramid Analytics' Stra...
Microsoft & Pyramid Analytics: What the Microsoft and Pyramid Analytics' Stra...Pyramid Analytics
 
Life after Xcelsius
Life after XcelsiusLife after Xcelsius
Life after XcelsiusVisual_BI
 
Getting Started: How to Set Up Your "Data as a Feature" Project
Getting Started: How to Set Up Your "Data as a Feature" ProjectGetting Started: How to Set Up Your "Data as a Feature" Project
Getting Started: How to Set Up Your "Data as a Feature" ProjectTIBCO Jaspersoft
 
Power BI Report Server Enterprise Architecture, Tools to Publish reports and ...
Power BI Report Server Enterprise Architecture, Tools to Publish reports and ...Power BI Report Server Enterprise Architecture, Tools to Publish reports and ...
Power BI Report Server Enterprise Architecture, Tools to Publish reports and ...Vishal Pawar
 

Similar to Power BI for Developers (20)

Extending Power BI with your own custom visual
Extending Power BI with your own custom visualExtending Power BI with your own custom visual
Extending Power BI with your own custom visual
 
The New Basics of Business Intelligence Lesson 5: Embedded Analytics
The New Basics of Business Intelligence Lesson 5: Embedded AnalyticsThe New Basics of Business Intelligence Lesson 5: Embedded Analytics
The New Basics of Business Intelligence Lesson 5: Embedded Analytics
 
VBI View 2.0
VBI View 2.0VBI View 2.0
VBI View 2.0
 
Power bi proof of concept
Power bi proof of conceptPower bi proof of concept
Power bi proof of concept
 
South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...
South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...
South Florida SQL Saturday - Power BI Report Server Enterprise Architecture, ...
 
Expanding the capabilities of SAC with App Design
Expanding the capabilities of SAC with App DesignExpanding the capabilities of SAC with App Design
Expanding the capabilities of SAC with App Design
 
Power bi fromzeroto bi hero
Power bi fromzeroto bi heroPower bi fromzeroto bi hero
Power bi fromzeroto bi hero
 
Learn why Microsoft Power BI is an Undisputed Market Leader?
Learn why Microsoft Power BI is an Undisputed Market Leader?Learn why Microsoft Power BI is an Undisputed Market Leader?
Learn why Microsoft Power BI is an Undisputed Market Leader?
 
A deep dive session on Tableau
A deep dive session on TableauA deep dive session on Tableau
A deep dive session on Tableau
 
Leveraging Microsoft Power BI To Support Enterprise Business Intelligence
Leveraging Microsoft Power BI To Support Enterprise Business IntelligenceLeveraging Microsoft Power BI To Support Enterprise Business Intelligence
Leveraging Microsoft Power BI To Support Enterprise Business Intelligence
 
.NET Fest 2019. Евгений Полоничко. Power BI embedded
.NET Fest 2019. Евгений Полоничко. Power BI embedded.NET Fest 2019. Евгений Полоничко. Power BI embedded
.NET Fest 2019. Евгений Полоничко. Power BI embedded
 
Traditional BI VS Self Service BI
Traditional BI VS Self Service BITraditional BI VS Self Service BI
Traditional BI VS Self Service BI
 
CGI-IgniteChicago
CGI-IgniteChicagoCGI-IgniteChicago
CGI-IgniteChicago
 
Azure advanced analytics for SAP customers
Azure advanced analytics for SAP customersAzure advanced analytics for SAP customers
Azure advanced analytics for SAP customers
 
Landing Self Service Analytics using Microsoft Azure & Power BI
Landing Self Service Analytics using Microsoft Azure & Power BILanding Self Service Analytics using Microsoft Azure & Power BI
Landing Self Service Analytics using Microsoft Azure & Power BI
 
SqlSaturday#699 Power BI - Create a dashboard from zero to hero
SqlSaturday#699 Power BI - Create a dashboard from zero to heroSqlSaturday#699 Power BI - Create a dashboard from zero to hero
SqlSaturday#699 Power BI - Create a dashboard from zero to hero
 
Microsoft & Pyramid Analytics: What the Microsoft and Pyramid Analytics' Stra...
Microsoft & Pyramid Analytics: What the Microsoft and Pyramid Analytics' Stra...Microsoft & Pyramid Analytics: What the Microsoft and Pyramid Analytics' Stra...
Microsoft & Pyramid Analytics: What the Microsoft and Pyramid Analytics' Stra...
 
Life after Xcelsius
Life after XcelsiusLife after Xcelsius
Life after Xcelsius
 
Getting Started: How to Set Up Your "Data as a Feature" Project
Getting Started: How to Set Up Your "Data as a Feature" ProjectGetting Started: How to Set Up Your "Data as a Feature" Project
Getting Started: How to Set Up Your "Data as a Feature" Project
 
Power BI Report Server Enterprise Architecture, Tools to Publish reports and ...
Power BI Report Server Enterprise Architecture, Tools to Publish reports and ...Power BI Report Server Enterprise Architecture, Tools to Publish reports and ...
Power BI Report Server Enterprise Architecture, Tools to Publish reports and ...
 

More from Jan Pieter Posthuma

Extending Power BI with your own custom visual
Extending Power BI with your own custom visualExtending Power BI with your own custom visual
Extending Power BI with your own custom visualJan Pieter Posthuma
 
Azure Global Bootcamp - CIS Handson
Azure Global Bootcamp - CIS HandsonAzure Global Bootcamp - CIS Handson
Azure Global Bootcamp - CIS HandsonJan Pieter Posthuma
 
Extending Power BI With Your Own Custom Visual
Extending Power BI With Your Own Custom VisualExtending Power BI With Your Own Custom Visual
Extending Power BI With Your Own Custom VisualJan Pieter Posthuma
 
SQLSaturday 551 - Extending Power BI
SQLSaturday 551 - Extending Power BISQLSaturday 551 - Extending Power BI
SQLSaturday 551 - Extending Power BIJan Pieter Posthuma
 
SQLServer Days - Power BI Custom Visuals
SQLServer Days - Power BI Custom VisualsSQLServer Days - Power BI Custom Visuals
SQLServer Days - Power BI Custom VisualsJan Pieter Posthuma
 
TechDays - Power BI Custom Visuals
TechDays - Power BI Custom VisualsTechDays - Power BI Custom Visuals
TechDays - Power BI Custom VisualsJan Pieter Posthuma
 
SQLSaturday 541 - Extending Power BI
SQLSaturday 541 - Extending Power BISQLSaturday 541 - Extending Power BI
SQLSaturday 541 - Extending Power BIJan Pieter Posthuma
 
Hadoop from Hive with Stinger to Tez
Hadoop from Hive with Stinger to TezHadoop from Hive with Stinger to Tez
Hadoop from Hive with Stinger to TezJan Pieter Posthuma
 
SQLRally Amsterdam 2013 - Hadoop
SQLRally Amsterdam 2013 - HadoopSQLRally Amsterdam 2013 - Hadoop
SQLRally Amsterdam 2013 - HadoopJan Pieter Posthuma
 

More from Jan Pieter Posthuma (12)

Extending Power BI with your own custom visual
Extending Power BI with your own custom visualExtending Power BI with your own custom visual
Extending Power BI with your own custom visual
 
Azure Global Bootcamp - CIS Handson
Azure Global Bootcamp - CIS HandsonAzure Global Bootcamp - CIS Handson
Azure Global Bootcamp - CIS Handson
 
Extending Power BI With Your Own Custom Visual
Extending Power BI With Your Own Custom VisualExtending Power BI With Your Own Custom Visual
Extending Power BI With Your Own Custom Visual
 
PBIG - Power BI en R visuals
PBIG - Power BI en R visualsPBIG - Power BI en R visuals
PBIG - Power BI en R visuals
 
SQLSaturday 551 - Extending Power BI
SQLSaturday 551 - Extending Power BISQLSaturday 551 - Extending Power BI
SQLSaturday 551 - Extending Power BI
 
SQLServer Days - Power BI Custom Visuals
SQLServer Days - Power BI Custom VisualsSQLServer Days - Power BI Custom Visuals
SQLServer Days - Power BI Custom Visuals
 
TechDays - Power BI Custom Visuals
TechDays - Power BI Custom VisualsTechDays - Power BI Custom Visuals
TechDays - Power BI Custom Visuals
 
SQLSaturday 541 - Extending Power BI
SQLSaturday 541 - Extending Power BISQLSaturday 541 - Extending Power BI
SQLSaturday 541 - Extending Power BI
 
Power BI API
Power BI APIPower BI API
Power BI API
 
Hadoop from Hive with Stinger to Tez
Hadoop from Hive with Stinger to TezHadoop from Hive with Stinger to Tez
Hadoop from Hive with Stinger to Tez
 
SQLRally Amsterdam 2013 - Hadoop
SQLRally Amsterdam 2013 - HadoopSQLRally Amsterdam 2013 - Hadoop
SQLRally Amsterdam 2013 - Hadoop
 
SQLBits XI - ETL with Hadoop
SQLBits XI - ETL with HadoopSQLBits XI - ETL with Hadoop
SQLBits XI - ETL with Hadoop
 

Recently uploaded

Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 

Recently uploaded (20)

Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 

Power BI for Developers

  • 1. Power BI for Developers Developers guide to extending Power BI PBI MCR JUNE 2019 - Jan Pieter Posthuma
  • 2. • Microsoft Data Consultant • DataScenarios – Data Consultancy Company • Architect roles at multiple projects • Creator of Power BI Custom Visuals • HierarchySlicer [∞] • Box and Whisker chart [∞] • D3js Visual [∞] • Contact • mail@datascenarios.nl • https://twitter.com/jppp • https://linkedin.com/in/jpposthuma • https://github.com/liprec Jan Pieter Posthuma 2© 2019 – DataScenarios
  • 3. • Introduction • Power BI for Developers • Power BI Embedded • Power BI Custom Visuals • Power BI Custom Connectors 3© 2019 – DataScenarios Outline
  • 4. What next? © 2019 – DataScenarios 4
  • 5. Build a Microsoft Power BI Embedded Solution Power BI for Developers series Jan Pieter Posthuma
  • 6. • Introduction • Fundamentals • Authentication • Demo – JavaScript API • Roadmap 6© 2019 – DataScenarios Session Outline
  • 7. Introduction Build a Microsoft Power BI Embedded Solution © 2019 – DataScenarios 7
  • 8. • Publish to web • Publicly available (no license) • Anonymous access • Embed in SharePoint Online • Signing covered by SPS • Secure Embed • Users prompted to Sign in • Power BI account needed • Embedded analytics • Capacity via Azure (or Premium) • No end user license needed 8© 2019 – DataScenarios Embedding with Power BI
  • 9. • Power BI is a software-as-a-service analytics solution that gives organizations a single view of their most critical business data. • With Power BI Embedded embed intelligence can be added to apps using the Power BI APIs. • Developers can spend time focusing on their solution to meet customer demands, instead of developing visual analytics features 9© 2019 – DataScenarios Embedded Analytics – Power BI Embedded
  • 10. Why Power BI Embedded For your business Faster time to market Stand out in the crowd Flexible pricing and no end user licensing Adopt decades of analytics expertise For your developers Focus on your product Respond to customers Library of APIs and SDKs Total control of visuals and user experience For your customers Explore data from any device Make decisions in context Take action from the visual © 2019 – DataScenarios 10
  • 11. Feature Power BI Embedded (A SKUs) Power BI Premium Capacity (EM SKUs) Power BI Premium Capacity (P SKUs) Embed artifacts from a Power BI App workspace Azure capacity (A1: ~$735.913/month) Office 365 capacity (EM1: ~$625/month) Office 365 capacity (P1: $ 4,995/month) Consume Power BI reports in an Embedded application Consume Power BI reports in SharePoint Consume Power BI reports in Dynamics Consume Power BI reports in Teams (excludes mobile app) Access content with a FREE Power BI license in Powerbi.com and Power BI mobile Access content with a FREE Power BI license embedded in MS Office apps 11© 2019 – DataScenarios Power BI Embedded SKUs
  • 12. Fundamentals Build a Microsoft Power BI Embedded Solution © 2019 – DataScenarios 12
  • 13. Manage all analytic objects Automate onboarding new customers Embed reports, dashboards, tiles and visuals Power BI APIs Azure APIs for automation Create and manage capacities Scale up/down at any time Monitor performance with Metrics & Alerts Data Platform Programmatic All data sources supported by Power BI REST APIs Azure Resource Manager API Microsoft Azure Power BI JavaScript API Enable client-side integration and interaction Power BI The Power BI Embedded API surface 13© 2019 – DataScenarios Your app
  • 14. Power BI APIs Import Get reports Get dashboards Get dashboard tiles Push data Embed Embed a specific report Enable/ disable the filter pane Load a default report page Clone report and dashboard Add/delete workspaces Set data source connections Refresh dataset Gateway manage-ment APIs Export PBIX files Update report Rebind report Add/delete workspace users Clone tile Dataset manage-ment APIs Datasource manage-ment APIs Monitoring Scale up/down (ARM) Pause resume (ARM) Buy capacity (ARM) Capacity manage-ment Print & reload events Page navigation Filter reports Edit reports Data selection events Set visual location in report Set visual size Set visual filters Set local language Page changed event Tile clicked event Report rendered event Q&A question event Set Q&A question Automate Extend visual options menu Extend visual context menu Set Colour Themes 14 Customize Manage Capacity Hide/Show menu items Sort custom menu items Disable/ Enable menu items © 2019 – DataScenarios 14
  • 15. Typical SaaS application • Each app drives specific value for users • Analytics are most valued when integrated into the application workflow © 2019 – DataScenarios 15
  • 16. Data connectivity • Over 90 data connectors supported • Direct Query | Cached | Real- time | Cloud | On premises • Manage datasets, data sources, connections strings with Power BI API © 2019 – DataScenarios 16
  • 17. Building in-context analytics • Integrate analytics seamlessly into the app workflow • Use bi-directional API to increase engagement © 2019 – DataScenarios 17
  • 18. Power BI JavaScript API © 2019 – DataScenarios 18
  • 19. Authentication Build a Microsoft Power BI Embedded Solution © 2019 – DataScenarios 19
  • 20. • Registration Tool: https://dev.powerbi.com/apps • Application Type: Server-side web application • Choose Power BI APIs needed • End result: • Application ID • Application secret 20© 2019 – DataScenarios Register a server-side web application
  • 21. • Register a server-side web application: Application ID and secret • Use security group (Recommended) • Config PowerBI.com service 21© 2019 – DataScenarios Service principal with Power BI Embedded
  • 22. 22© 2019 – DataScenarios Row-level security • Authenticated user (via AAD or custom) • Roles and rules added via Power BI desktop file • Identity via live connections: • On-premises / Azure Analysis Service: =CUSTOMDATA() • Azure SQL Server (Power BI Premium): USER_NAME() • Create access_token with: • username • role(s) • dataset Users Roles Rules
  • 23. Demo – JavaScript API Build a Microsoft Power BI Embedded Solution © 2019 – DataScenarios 23
  • 24. How to start with Power BI Embedded? 24© 2019 – DataScenarios Power BI Desktop Capacity- based licensing Setup embedded solution REST & JS APIs
  • 25. Roadmap Build a Microsoft Power BI Embedded Solution © 2019 – DataScenarios 25
  • 26. • Service Principle based authentication (GA) • Embed & automate paginated reports • Quick visual creator API • Improved deployment through dynamic binding of reports to datasets 26© 2019 – DataScenarios Roadmap
  • 27. © 2019 – DataScenarios 27
  • 28. © 2019 – DataScenarios
  • 29. Build a Microsoft Power BI Custom Visual Power BI for Developers series Jan Pieter Posthuma
  • 30. • Introduction • Basic developing • Demo – Custom Visuals • Advanced developing • Demo – External libraries • Roadmap 30© 2019 – DataScenarios Session Outline
  • 31. Introduction Build a Microsoft Power BI Custom Visual © 2019 – DataScenarios 31
  • 32. What are custom visuals? © 2019 – DataScenarios 32
  • 33. Power BI Custom Visuals Platform Developer tool Open Source APIs & Utils Import D3, jQuery, WebGL, etc… https://github.com/Microsoft/PowerBI-visuals-tools Debugging and testing See what you code Sideload into Power BI to test anytime, anywhere Marketplace Developer portal Integrated into PBI clients Global reach – Monitize via ‘In-App Purchase’ (IAP) R scripting Advanced analytics visualizations Interactive © 2019 – DataScenarios 33
  • 34. • Intuitive visual consumption of data • Over 150 visuals in the marketplace • Build or buy tailor-made visuals • Enterprise ready • Differentiator in the market The Business Value of Custom Visuals © 2019 – DataScenarios 34
  • 35. Why Develop Custom Visuals? Enrich your solution portfolio Eye catching reports and dashboards – Go beyond the usual pie/bar charts Build a unique expertise in the BI solution providers domain © 2019 – DataScenarios 35
  • 36. Basic development Build a Microsoft Power BI Custom Visual © 2019 – DataScenarios 36
  • 37. • NodeJS 5.0+ Required. (v5 – 8 are confirmed to work) • https://nodejs.org/ • PowerBI-Visuals-Tools • npm install -g powerbi-visuals-tools • Create and install user SSL certificate: https://github.com/Microsoft/PowerBI- visuals/blob/master/tools/CertificateSetup.md • Visual Studio Code • https://code.visualstudio.com/download • PBIViz CLI addin: https://marketplace.visualstudio.com/items?itemName=liprec.vscode-start-pbiviz • Enable ‘Developer Visual’ in Power BI user settings Tools needed © 2019 – DataScenarios 37
  • 38. Custom Visuals Core Concepts © 2019 – DataScenarios 38
  • 39. Custom Visuals Core Concepts © 2019 – DataScenarios 39
  • 40. Create Code Test Package Submit APIs PowerBI.com Your favorite IDE FeedbackLearn more: https://github.com/Microsoft/PowerBI-visuals Custom Visual Lifecycle © 2019 – DataScenarios 40
  • 41. Basic development – Demo Build a Microsoft Power BI Custom Visual © 2019 – DataScenarios 41
  • 42. Advanced development Build a Microsoft Power BI Custom Visual © 2019 – DataScenarios 42
  • 43. • First class citizens: • D3js – Graphical library for ‘Data-Driven Documents’. • Lodash – Library to take the hassle out of working with arrays, objects, strings, numbers, etc. • Helper classes to support common UI operations, e.g.: • powerbi-visuals-utils-formattingutils – valueFormatting, TextProperties, … • powerbi-visuals-utils-dataviewutils – getObject, DataViewObjectsParser • Change upcoming powerbi-utils (v3.x): • ECMAScript 2015 (ES6) modules support: use simgle ES modules instead of full library 43© 2019 – DataScenarios Custom Visuals External Libraries
  • 44. • Power BI Test utils: • powerbi-visuals-utils-testutils – Mocks and fakes in order to simplify unit testing • karma – Test JavaScript code in multiple real browsers. 44© 2019 – DataScenarios Custom Visuals Testing
  • 45. Roadmap Build a Microsoft Power BI Custom Visual © 2019 – DataScenarios 45
  • 46. • API v2.6 • Support subtotals customization • API v2.5 • Analytics Pane Support • SelectionIdBuilder supports withMatrixNode and withTable methods • API v2.3 • Landing Page API • Tuple filter API (Multi column filter) • Rendering Events API • API v2.2 • Restoring JSON Filter from DataView • ContextMenu API • API v2.1 • Significant performance enhancements: Faster loading times, Significantly smaller memory footprint, Optimized data and event transactions 46© 2019 – DataScenarios What’s new in custom visuals API’s
  • 47. © 2019 – DataScenarios 47
  • 48. © 2019 – DataScenarios

Editor's Notes

  1. 13
  2. CRMUG Summit 2017
  3. 18
  4. https://microsoft.github.io/PowerBI-JavaScript/demo/v2-demo/index.html
  5. https://microsoft.github.io/PowerBI-JavaScript/demo/v2-demo/index.html
  6. A visualization extension platform, JavaScript based, to enable the creation of visualizations that would make it easier to understand the data and retrieve insights from the data.