Color Code shape map using value ranges power bi - powerbi

I am unable to color US States in power bi shape map based on color ranges.
An aggregated metric is calculated based on all screen filters then it is mapped to color ranges to assign color, as adding a measure in legend field of the chart is not possible I am unable to color it.
Is Power BI dev team planning to include the feature to allow adding measure as the legend or there is any other possible way to achieve this? Any help would be appreciated.

Related

Is it possible to recreate this visual in Power BI?

I currently have a report that kind of looks like this in Excel. Is it possible to create the same structure with the color formatting in Power BI? Especially with the Percentage Sale and Sales Amount below each other in the row?
I tried using Matrix visual but I kind of run into a problem since the columns would have different format types - whole number and percentage. Also tried with showing columns in rows, while using Percentage Sale and Sales Amount as two columns. But then I would have problems with the color formatting. Any ideas how to achieve it in Power BI?
Its actually simple ..... just follow these steps
1.) You can use matrix or table both... but I preferred tables
2.) Go to format Visual (In visualistation you can see 3 option... its the middle one)
3.) After that click on values.
4.) Now you can se background color , alterante background color etc
5.) Just choose it acc to preferences
If you want a bar label in a selected column then,
6.)In build format, right click on your column (which you want to customize)
7.)Select conditional formatting
8.)Now you can change color
9.)apply this. After that you can see your data of selected columns are showing grid bars

Power BI - formatting matrix table individual cells

Team,
I'm trying to format individual cells within a Power BI matrix table. It wouldn't be a conditional formatting because it's not based on the values of the cell, rather it's based on the intersection of my X and Y labels.
The first image is my starting matrix table and the second image is how i'd like to format the cells.
I believe you are looking for the Table Heatmap visual. it is for free. Tick the 3 dots and click "Get more visuals".

Create Bar chart in Power BI as the attahced sample

I need to create the attached graph type with the sample data set attached. Need your super power to resolve this.
Thanks in advance.
The exact chart will not be possible in Power BI. You can create a stacked column chart with a line. use min for the lower column, range for the upper column in the stack. Format the lower column white, so it is invisible. Use allocation as the line data and format the line to show no line and only markers. You won't be able to make the marker a dash in Power BI.

ESRI color gradient map theme in Power BI

Heat maps in Power BI are based on distance. What I would like is a color gradient (i.e. a smooth color transition from one color to the other) between points of different color.
Here are some examples of wind potential energy and biodiversity possibly made is similar ways:
The algorithm that calculates the gradient is not so important, only the visualization.
Any thoughts about whether this is possible?

Different color schemes for bars chart in PowerBI

Hi I'm trying to create a Bar Chart like this (This chart is an illustration, not created from data yet):
If the data is being fetched from a single table, how can I have dual color scheme for bar is past and future. Also how can I place a moving marker that automatically updates the TODAY placard based on whenever the report is viewed and accordingly bars should follow the past and future color schemes.
Schema is roughly as follows:
Table1: Issue ID, Release name, issue priority
Table2: Release name, Release date
In Power BI as well as in Excel, the secret is in the data layout. You can't just have all your past and future data in two columns and magically expect that some of them will turn out red and orange instead of dark and light gray.
You will need to prep your data source to include stacked series for the light gray, dark gray, red and orange series. Stack all series on top of each other and make sure that where the red and orange series have values, there are only zero values for the gray series.
I suggest you use four columns for four stacked series and divide the values accordingly.
In Power BI, you can apply the same principle as in this Excel screenshot.
Let me know if you need help translating that to Power BI.
Edit: The Power BI data does not have to be static. You can build columns with Dax functions that arrange the data in the pattern required. Add four columns to your data model with the formulas
chtPastProdA = if(tblProducts[Date]<TODAY(),tblProducts[Product A],0)
chtPastProdB = if(tblProducts[Date]<today(),tblProducts[Product B],0)
chtFutureProdA = if(tblProducts[Date]>=today(),tblProducts[Product A],0)
chtFutureProdB = if(tblProducts[Date]>=today(),tblProducts[Product B],0)
Then build a stacked column chart and stack all four of these series. Format the colors.
For the "Today" marker you would need a custom label, which Power BI currently does not support. But since the demarcation between gray and red/yellow is today, it's quite obvious where the current date is, anyway.