Using the tooltipServiceWrapper.ts example
Is there a way to modify the getTooltipData(value: any): VisualTooltipDataItem[] {displayName: value,value: header: " " ,color: } This is working perfect with multiple instances for what I need , I...
View ArticleIs it possible to Host Power BI on Premisis
Is it possible to host Power BI on Premisis. If so what tools are required? Thanks.
View ArticleHow to add allow-top-navigation to power bi embedded
I've created a custom visual that generates a hyperlink based on a slicer selection. I've imported the custom visual to my PBIX in Power BI desktop and have published this to my workspace (note:...
View ArticleRe: Performance based "Azure region" of Workspace Collection?
I'm by no means an Azure expert, I just share something based on my monitoring(via chrome dev tool(F12)) and understanding.For more accurate explanation on Azure structure, you shall go to Microsoft...
View ArticleEmbed Power BI report into an app
Hello,I am trying to embedd report in custom app.For that i am follwing this approachIntegrate a report into an app :...
View ArticleRe: How to deactivate Power BI Pro Free 60 Day Trial
Hi Iam the O365 administrator however I cannot see Power BI Pro (trial) as a subscription or as a license. This is what I see:
View ArticleCustom Visuals- How to move text when resizing chart
I tried adding text to the Sample Bar Chart code bars.enter() .append("text") .classed("label",true) //or "label" .attr ("y",d => yScale(<number>d.value)+1) .attr ("x",d =>...
View ArticleUSing REST API Data As souce
HI All, When selecting source as rest api data,i get response able to see the output,but converting into a table getting the following error .could please help any one how do you resolve the following...
View ArticleRe: Deployment with Live Connection to SSAS
You need to provide credential when creating data source in Gateway. To limit data access for end users, you can configure Row Level Security. Regards,
View ArticleRe: Checking retention policy for existing datasets
It seems there's no way. Though the documentation in your link saysHEADERS Content-Type:application/json Location:https://api.powerbi.com/v1.0/myorg/datasets/{dataset ID} BODY { "@odata.context":...
View ArticleRe: Embedding Powerbi reports into Application
Is directquery mode in your case? You'll have to update the connection string in in directquery mode connecting to Azure SQL database. If it is not your case, can you post the code snippet embedding...
View ArticleRe: Is it possible to Host Power BI on Premisis
Check this blog Power BI & SSRS 2016 in an On-Premises Environment. Since SSRS 2016, it is able to interate Power BI. For further questionS, you can go to the the SSRS forum.
View ArticleRe: How to add allow-top-navigation to power bi embedded
Seems not possible, submit an idea at ideas.powerbi.com
View ArticleRe: Embed Power BI report into an app
It is possible. Check Using ADAL .NET to Authenticate Users via Username/Password. However I would concern about some license compliance, as the pro license is charged per user. Do you know Power BI...
View ArticleRe: Using the tooltipServiceWrapper.ts example
, Based on my research, you could not change the circle symbol. See interface VisualTooltipDataItem in...
View ArticleRe: Issue with Power BI REST API (Embedding reports from group workspace)
There was a bug. Team has fixed it.
View ArticleProduce excel files from a Power BI matrix by a data-driven subscription
Hi,I need to know if it is possible to produce excel files from a Power BI matrix by using a mechanism data-driven subscription similar to what SSRS allows.My goal is to produce an excel file having a...
View ArticleRe: Custom Visuals- How to move text when resizing chart
This solved the issue . let text = this.barContainer.selectAll('.bar').data(viewModel.dataPoints); text.enter() .append('text') .classed('bartext', true) .text(d => <string>d.value2);...
View ArticleCustom visuals- How to add Analytics pane
I am working with the Sample BarChart exemple and would like to add an average line.Do you have any suggestions?
View Article