Questions tagged [powerbi-custom-visuals]

Questions about Power BI custom visuals: their development, capabilities and usage. Power BI is a self-service analytics tool. Custom visuals are visualization plugins for Power BI, written in TypeScript or JavaScript using the Custom Visuals SDK.

389 questions
1
vote
1 answer

Power BI :: Show a Table of Measures on Rows Instead of Columns

GOAL: I'm trying to create a table in Power BI with different measure. Every measure has a different filter, for example: Realised Savings Azure App Service v2 = CALCULATE(SUM('Usage details'[costInBillingCurrency]), FILTER ( 'Usage details',…
1
vote
0 answers

How to keep auto aspect ratio with PowerBI python custom visual matplotlib plot, when facecolor set to transparent?

I have a Python custom visual inside a PowerBI report. Normally, this automatically fills the available space - and set the aspect ratio accordingly. However, when I set a facecolor background color (say None for a transparent visual, but also any…
1
vote
1 answer

Power BI :: how to draw a curve in a scattered chart?

I have a graphic that we have created in Azure Log Analytics. Such graphic is meant to show how a database is used based on 100 plot dots: If I download those 100 points in a CSV they look like…
Francesco Mantovani
  • 10,216
  • 13
  • 73
  • 113
1
vote
1 answer

Power BI :: change background color based on another column

I previously asked a question about how to use PREVIOUSMONTH and thanks to that I was able to create 2 columns: first one with the current month spending per resource on Azure second one with the same resources on the previous month: I now…
Francesco Mantovani
  • 10,216
  • 13
  • 73
  • 113
1
vote
0 answers

How to insert a video or gif in PowerBI through a link?

I have a dashboard presentation and I'm required to put key visuals on my Powerbi dashboard. Those key visuals are short mp4 videos and gifs. My data source is an excel file that indicates the link of the key visual. Below is a screenshot of my…
HC MDA
  • 11
  • 2
1
vote
1 answer

How to access the value of a single datum in a dataset using an expression in Vega Lite

We are attempting to parameterize the y-axis domain range by allowing the user to create simple measures (y_min=0.3, y_max=0.7) in PowerBI, and then access these measures within the Vega-lite JSON code to set these scales. I am able to set the raw…
1
vote
1 answer

Rounding off of Value in Smart Narrative

I generated a Smart Narrative visual but there are values eg. 10,111,238 and 1,289,652 the problem is the format I need is 10M and 1.3M instead. Is there a way where I can Round the value in this feature? Thank you! I added the image for…
trial1
  • 11
  • 2
1
vote
1 answer

Creating a Music Podium top 5 - like visualization in Power BI from a table

I am met with the challenge of creating a music visualization in Power BI, I have already created the DAX code to come up with a table that will rank the postion of the top 5 songs of the week including the name of the artist and if the song is…
R_Student
  • 624
  • 2
  • 14
1
vote
1 answer

How can I place MoM values over a line and clustered column chart in Power BI

Want to place Month Over Month values above the chart. This MoM calculation is based on a monthly product units sales. I`d like to know how to position MoM values above the chart.
1
vote
1 answer

How to create a tabular layout in a Power BI Matrix

I have a Power BI dashboards that looks like this: As you can see the subscriptionName is hidden and you have to click on the + in order to open up and see the name of the subscription. I would like to have the SubscriptionId and the…
1
vote
1 answer

Build a dynamic ranking column that will update when a slicer is selected

I am trying to build a dynamic rank column that will update when a slicer is selected. There are 2 slicers on the page: RegionalManager and SalesManager There is only one table, say tblSales. I have tried various combinations of RANKX but nothing…
Mike
  • 713
  • 6
  • 20
  • 41
1
vote
0 answers

Average of top 10 values in Power BI

My data set looks like this: Time Date ID Value 12 am 1st Oct 1001 100 12 am 2nd Oct 1001 203 12 am 3rd Oct 1001 403 .... ...... .... .... 11 pm 20th Oct 1001 566 12 am 1st…
1
vote
0 answers

Define allowable number range for an numeric field in format pane using getFormattingModel method

With previous versions for power bi visuals api we used to define a valid number range for format model numeric input fields using validValue : validValues But with the latest version 5.1.0 using getFormattingModel() this valid values is not…
1
vote
1 answer

Which Power BI Visual add on download is this

I was asked to use this Visual in Power BI. But I do not know which add-on I have to download for this Visual. Does anyone know? If so please let me know which one to use.
Johnny Spindler
  • 358
  • 4
  • 14
1
vote
0 answers

Making Power Bi - R (HTMLwidgets pbiviz based) custom visuals interactive with other Power BI visuals

I have made a pbiviz custom visual using developer tools of Normal distribution curve over a Histogram plot with R - ggplot2 and plotly libraries in a pbiviz.package The visual works fine. Now I want to add interactivity of the Histogram with other…