jamesdales / IconMapSupport

MIT License
4 stars 1 forks source link

Enable numeric labels #25

Closed rafael-costa123 closed 9 months ago

rafael-costa123 commented 9 months ago

Right now on the visual area of IconMap you can add labels that show on the map. I was trying to get numbers on the map, my idea is to classify each city based on population, but i cant manage to do it because the label can only be a text, and the rank can only be a number, a measure. Is there a way to make the label accept a numeric input? Thank You

J-Spain commented 9 months ago

I've run into this before with native visuals as well. The only way I could figure out to get it work was to convert the numeric value to text.

Then you should be able to select that measure as the label.

CONVERT(Number, STRING)

-Jim