Power BI Embedded format for mobile
Followed this power bi embedded get started sample and noticed that the viewing of reports wasnt great on a mobile phone. Therefore I created a PBIX file that targeted mobiles, summarising the data...
View ArticleRe: How to use Power BI Rest API without GUI authentication (redirect uri)
This is a very useful discussion, especially regarding the apps that my company develops, which are typically Windows services running on some headless datacenter server that doesn't usually have user...
View ArticleUnable to work with the PBI Visual template solution from GIT Hub
Hi,I am trying to create a custom visual. I followed the steps under Getting Started in "https://github.com/Microsoft/PowerBI-visuals".When I opened one of the .ts file in the solution from the source...
View ArticleRe: Authentication Pain - adal-node
This stackoverflow thread will probably help. Power BI needs user to be involved in authentication. The 403 is 'forbidden' so url is found but permissions not granted.
View ArticleUsage of custom visual in production environment
Dear, As you know we have many nice custom visuals in Power BI visual gallery. I would like to use those, however I am bit scared whether those custom visuals are tested againtst security? It will...
View ArticleRe: Where are the "see records" columns setup?
, , , , , as what I mentioned in this case, you can use Values pane in Visualization to include, exclude and re-order some columns. Then, you will get columns exactly what you want when you export...
View ArticleRe: Can I control properties of type number?
First, a few assumptions:1. You created a "settings" object called "mySettings" to hold the min and max properties values.2. You created a converter() function that, among other things, gets the min...
View ArticleRe: Power BI Rest-API & Azure Account?
Thanks, this is great that it is no limited to Web or UWP applications only!
View ArticleHow to define Table DataViewMappings
Hi,I want to make a custom visual with just two columns, one for text and other for a link button.Ho can I define the dataview model.? I couldnot find any doc that defines a dataview for Table like one...
View ArticleRe: How to define Table DataViewMappings
I am not aware of a way to have a link button in a visual currently.
View ArticleRe: Where are the "see records" columns setup?
Hi Do you mean in the original visualization or in the See Records visualization?When i do this to the original, it then distorts the visual as it is pulling in values i do not want included at all....
View ArticleError refused to display url in a frame because it set 'x-frame-options' to...
Hi,I was trying to create a custom visual that have a Resolve link which redirects to an API on click. I used the default YourVisual template and added the link as tr.selectAll("td").data(d=>...
View ArticleRe: How to define Table DataViewMappings
I could create a link button using SVG and on click it was redirecting. this.htmlContents = d3.select(options.element.get(0)).append("svg") .attr("width",400)...
View ArticleRe: Power BI Embedded with Row-Level Security?
I did review that video, and heard from other channels that it is on the roadmap to have RLS with Power BI Embedded. If anyone can say how this is being implemented, it would be much appreciated, so...
View ArticleHow to multiSelect with selection manager in power bi custom visual
I am using a kendo multi select in power bi custom visual but it appears that only the first selection is sticking.My code is below: $("#myMultiSelect").kendoMultiSelect({ dataTextField: "value",...
View ArticleRe: Visual bullet chart won't compile in Developer Tools
I was able to get this to compile by changin all the lets to var. I think it has something to do with the version of typescript used in the developer tools
View ArticleMerge created table with imported table
I want to merge two tables: one is imported from a csv file, the other is created in power bi with dax. I want to combine these two tables, but when I want to merge them (Edit Query) I only see the...
View ArticleRe: Merge created table with imported table
You would probably need to create another calculated table that merges the two together.
View ArticleRe: Merge created table with imported table
You can try my technique here: http://social.technet.microsoft.com/wiki/contents/articles/32915.power-bi-merge-query-with-m.aspx
View Article