Forum Discussion
Visual Used for MAP
Hello,
I have come across this visual online
which visual is used to get this ??
I have tried Shape map but I am not able to display the state name& % in shape map like in this visual.
4 Replies
- Pragati11
Super User
Hi dia612 ,
Check Power BI filled maps if they help.
https://docs.microsoft.com/en-us/power-bi/visuals/power-bi-visualization-filled-maps-choropleths
Thanks,
Pragati
- amitchandak
Super User
dia612 , refer these two for label modification
https://mitchellpearson.com/2018/08/19/how-to-add-data-labels-to-maps-in-power-bi/
https://community.powerbi.com/t5/Desktop/Data-Labels-on-Maps/td-p/79118
- v-xicai
Community Support
Hi dia612 ,
You may create calculated column like DAX below, then put it into Location box of Filled Map.
State Percent = Table1[State] & " " & ROUND ( DIVIDE ( CALCULATE ( SUM ( Table1[Amount] ), ALLEXCEPT ( Table1, Table1[State] ) ), CALCULATE ( SUM ( Table1[Amount] ), ALL ( Table1 ) ) ), 0 ) & "%"Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.