Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
sarasmonu
Creator
Creator

Color by expression

Hi All,

I have 4 fields say Col1, Col2,, Val1, Val2.

I have a scatter plot made using Col2, Val1 and Val2 respectively .

Now i want ti display the bubbles of scatter plot in orange whenever the value in Col1 = 'A'.

Please let me know how can i achieve this.

Thanks,

Monu

1 Solution

Accepted Solutions
niclaz79
Partner - Creator III
Partner - Creator III

Hi,

You can set this color change by expanding the expression for Val 1 and Val 2 and add an expression for background color:

if(Col1 = 'A', RGB(100,100,100))


You have to adjust the RGB coloring to whichever color you'd like.

View solution in original post

1 Reply
niclaz79
Partner - Creator III
Partner - Creator III

Hi,

You can set this color change by expanding the expression for Val 1 and Val 2 and add an expression for background color:

if(Col1 = 'A', RGB(100,100,100))


You have to adjust the RGB coloring to whichever color you'd like.