Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

color of chart

I want to achieve the following attachment..when i clicked in filter blue the color of chart change to blue and when i click on red i will changes to red.Thanks

1 Solution

Accepted Solutions
Not applicable
Author

where i defining RGB value?

View solution in original post

3 Replies
Not applicable
Author

you can achieve this by defining RGB value in back end to Red field and Blue field.

I am attaching some document PFA for some idea

Not applicable
Author

where i defining RGB value?

its_anandrjs

Hi,

You can try also load an Inline table

Colors:

LOAD * Inline [

Color

Red

Blue  ];

And in front end add list box field Color

And in expression part click on plus sign and in Background properties write

BGColor.png

=if(GetFieldSelections(Color)='Red',Red(),if(GetFieldSelections(Color)='Blue',Blue(),QlikTechGray()))

Express.png

Regards

Anand