powerbi-embedded

How to get power bi dashboard in our own application?

谁说我不能喝 提交于 2020-05-29 10:20:29
问题 I am new to power bi. I have power bi account there I created some dashboards with some reports, now I want to consume those dashboard and report using power bi rest API (https://docs.microsoft.com/en-us/rest/api/power-bi/)in our own application. Our application we used the .net core for back-end and angular 6 for the front end. We need to call power bi API from the .net core. If I change report in power it should also reflect in our application. I am new so I am not understanding from where

Can I pass a dynamic query parameter to an embedded Power BI report in ASP.Net MVC?

£可爱£侵袭症+ 提交于 2020-05-14 11:54:08
问题 My question is in reference to the following documentation that is part of Power BI Embedded Query Parameters API at https://azure.microsoft.com/en-us/updates/power-bi-embedded-query-parameters-api/ "Note that the parameters are based on the dataset, so they are defined per report/dashboard, but not on the user’s session level. It means that different users who are using the same report at the same time will always see the same parameter’s value." We are planning to Embed dashboards created

SigningCredentials on .NET Core 1.0

我与影子孤独终老i 提交于 2020-02-07 05:30:07
问题 SigningCredentials on .NET Core is different from .NET 4.0 回答1: The equivalent code in .NET Core would be: var key = Encoding.UTF8.GetBytes(accessKey); var signingKey = new SymmetricSecurityKey(key); var signingCredentials = new SigningCredentials(signingKey, SecurityAlgorithms.HmacSha256); The class names have changed a little, but everything should work the same. Make sure you are using the latest package versions. 来源: https://stackoverflow.com/questions/38089523/signingcredentials-on-net

Power BI embedded hide scrollbar

 ̄綄美尐妖づ 提交于 2020-01-25 10:18:08
问题 I have a Power BI embedded report that is always the full width and the correct height so that all the report can be seen. When I resize the browser window, for some browser sizes, a vertical scrollbar appears in the report page. When scrolling down with this scroll bar, there is no content. Is there a way to prevent the scrollbar appearing? 回答1: The scrollbar will not appear if you set 'View' -> 'Fit to Page'. This can be done in Power BI Desktop and in Power BI portal. 来源: https:/

Power BI: How to use OR between 2 different filters?

瘦欲@ 提交于 2020-01-25 08:16:28
问题 I have some table like this: +------+------+------+ | Lvl1 | Lvl2 | Lvl3 | +------+------+------+ | A1 | B1 | C1 | | A1 | B1 | C2 | | A1 | B2 | C3 | | A2 | B3 | C4 | | A2 | B3 | C5 | | A2 | B4 | C6 | | A3 | B5 | C7 | +------+------+------+ In which it is some thing like a hierarchy. When user select A1, he actually selects the first 3 rows, B1, selects first 2 rows, and C1, selects only the first row. That is A is the highest level, and C is the lowest. Note that ids from different levels are

Is it possible to embed power bi into desktop application?

本小妞迷上赌 提交于 2020-01-13 05:51:10
问题 I'm an ISV developing a desktop application and would like to consider using power bi embedded for my application, but just can't seem to find information if it is possible to use inside desktop application. Searching on SO / Googe did not give me answer to this question. power bi embedded homepage also did not stress out that it's restricted to web only. P.S. If it is for "web apps only" - maybe using a WebBrowser control inside a form might be a workaround? Does anyone has experience using

Node js App integration with power bi rest Api

女生的网名这么多〃 提交于 2020-01-12 13:56:05
问题 Is there a way using power bi rest API in node js, I watched video ,Ran Breuer and Arina Hantsis were showing the demo here,Setting up and Getting Started with Power BI Embedded I want to achieve same but using node js, in our development environment we do not use c#. I found the Node SDK but it saying we no longer support node SDK,Node SDK Do I have to change development structure from Node js to c# in order to use power bi Rest API!! 回答1: If you want to achieve same, what Ran Breuer and

Node js App integration with power bi rest Api

佐手、 提交于 2020-01-12 13:53:32
问题 Is there a way using power bi rest API in node js, I watched video ,Ran Breuer and Arina Hantsis were showing the demo here,Setting up and Getting Started with Power BI Embedded I want to achieve same but using node js, in our development environment we do not use c#. I found the Node SDK but it saying we no longer support node SDK,Node SDK Do I have to change development structure from Node js to c# in order to use power bi Rest API!! 回答1: If you want to achieve same, what Ran Breuer and