Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Showing zero/negative values in bubble chart in Qlikview maps.

Hi all,

I have a scenario as below:

I have created a Scatter chart / Bubble chart and shown it on a Map. (Bing Data)

The expression that I am using to show the size of a Bubble is having a value zero for certain dimensions.

As a result on the Map those points are not shown. Is there a way to show them

Moresoever I also have values that are negative. Can that be shown in any way on the Map?

Thanks for helping out.

Saurabh Pandit

1 Solution

Accepted Solutions
Gysbert_Wassenaar

Of course not. Negative areas are not possible outside exotic branches of maths and physics. You can try using the fabs() function to create absolute values. If necessary use the Background Color option for the expression to give the bubbles with originally negative values a different color from the rest.

Expression: fabs( myexpression )

Background color: if( myexpression < 0, red(), blue())


talk is cheap, supply exceeds demand

View solution in original post

1 Reply
Gysbert_Wassenaar

Of course not. Negative areas are not possible outside exotic branches of maths and physics. You can try using the fabs() function to create absolute values. If necessary use the Background Color option for the expression to give the bubbles with originally negative values a different color from the rest.

Expression: fabs( myexpression )

Background color: if( myexpression < 0, red(), blue())


talk is cheap, supply exceeds demand