Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

little help with maps, please :-)

Hi

i am using google map with qlikview and i am trying to change the color of the bubble by count , for example is the value of the count is more then "80" then make it blue

i was able to do this , but i dont know how change the colors

error loading image

1 Solution

Accepted Solutions
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

You can assign the color using the attribute "Background Color" of the first Expression (in your case, X coordinate) - click on the little plus sign "+" next to the expression and type your formula in the expression for "Background Color" - something like this:

=if(count(Client) > 80, blue(), yellow())

Ask me about Qlik Sense Expert Class!

View solution in original post

4 Replies
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

You can assign the color using the attribute "Background Color" of the first Expression (in your case, X coordinate) - click on the little plus sign "+" next to the expression and type your formula in the expression for "Background Color" - something like this:

=if(count(Client) > 80, blue(), yellow())

Ask me about Qlik Sense Expert Class!
Not applicable
Author

Hi Oleg

Thank you for your help

what i should insert in the "blue()" ?

=if(count(Client) > 80, blue(), yellow())

Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

What do you mean? blue() is a valid color function. Look up "Color Functions" in QlikView help - you'll find all the basic colors, plus functions like RGB(), ARGB() etc...

Ask me about Qlik Sense Expert Class!
Not applicable
Author

Hi

its working!!