Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Showing country name and measure values on top of it.
I want this tooltip value to come above the country area and highlight top 5/10 countries.
Hello,
Perhaps this can help you:
1. Lets assume that you have the following dataset:
2. And you have the following map:
3. What you can do is go to: "Edit sheet > Select Map chart > Layers > Select dimension (Area layer) > Options > General" and check the option "Show label"
4. In the expression you can use something like: [Country] & '-' & Sum(Sales) // This will concatenate the country name (Field) and add the measure (Same measure that you use in Tooltip)
5. Outcome is:
As you can see the country name and the measure is presented directly on the map
I hope that this information was helpful. In case I have misunderstood the use case scenario, please elaborate in details by providing additional information. However, if it has helped you resolve the issue, addressed your concerns or at least pointed you in the right direction, please mark it as Accepted Solution to give further visibility to other community members.
Hello,
Perhaps this can help you:
1. Lets assume that you have the following dataset:
2. And you have the following map:
3. What you can do is go to: "Edit sheet > Select Map chart > Layers > Select dimension (Area layer) > Options > General" and check the option "Show label"
4. In the expression you can use something like: [Country] & '-' & Sum(Sales) // This will concatenate the country name (Field) and add the measure (Same measure that you use in Tooltip)
5. Outcome is:
As you can see the country name and the measure is presented directly on the map
I hope that this information was helpful. In case I have misunderstood the use case scenario, please elaborate in details by providing additional information. However, if it has helped you resolve the issue, addressed your concerns or at least pointed you in the right direction, please mark it as Accepted Solution to give further visibility to other community members.