-
Notifications
You must be signed in to change notification settings - Fork 30.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Embedded Power BI Notebook Renderer Exploration #100759
Comments
Possible Scenarios
References |
Embed Pre-existing Full Report or Chart as Output to ReferencesValueCan be used as a reference to support an investigation in a Kusto-style notebook or additionally, after investigation, a user might create a report specifically to embed in a published notebook. ConsRequires external tooling to actually create the rendered component. FeasibilityThis can be done with existing Power BI APIs. After setting up the login process and possibly a simple sytax for requesting a Power BI report/dashboard (with Intellisense), it would be simple enough to implement. Create Report from Kusto Queries using custom languageValueUser could create reports on-the-fly while using kusto or other data sources for investigation in the notebook. Using a custom syntax, we could template reports or charts and plugin queries. ConsForeign method of working with cloud-based Power BI reports. Less interop with Power BI desktop. FeasibilityAFAICT, it just isn't possible to hookup queries to reports when making charts in Power BI using the existing API. One workaround would be to ingest the data locally using a query language, then push a copy of the data manually to a new report. Provider Scenario Load PBIX file as a notebook with data sources and charts as different code cellsValueThis essentially provides a new mode for working with PBIX files. All changes to the PBIX would be interoperable with Power BI desktop and provides the user a better way of investigating the data while creating a report. Right now working with kusto queries and PBI Desktop seems very disjoint. ConsThe cons of this approach are primarily in the feasibility mentioned below. Also, since notebooks don't have the same report editing fidelity (e.g. layout of charts), it may feel cumbersome when moving between tools if that option is taken. FeasibilityThis is a fairly expensive endeavor as we would really need to copy a lot of the report editing code from the web client of Power BI into our provider/render. Also, the start of this would be very limited. Each different type of data source would need to be handled and I imagine kusto would be the start. |
This item covers exploration of what the intersection of Power BI and Notebooks could be.
The text was updated successfully, but these errors were encountered: