Skip to main content
Announcements
Qlik Community Office Hours, March 20th. Former Talend Community users, ask your questions live. SIGN UP
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Color Schema creation in QlikSense

Hi,

   

               How can we create a color scheme in Qlik Sense ??? User Defined Color Scheme  ??

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

I got my requirement done.

I did the color code change in the theme files(theme.json) and its working fine.

Thank you all for your comments and suggestions.

View solution in original post

4 Replies
ramkrishna86
Creator II
Creator II

Hi Bijoy,

Use custom color using By expression, you can find the option under colors and legend section in chart properties.

CustomColor.JPG

Thanks,

Ram Krishna

Anonymous
Not applicable
Author

Hi Ram,

        Thanks for your quick Reply,

        Actually, this is my requirement. Color by expression for two different measures in a Combo Chart

ramkrishna86
Creator II
Creator II

Hi Bijoy,

As mentioned by jpe‌(color by expression - QlikSense)

The color 'by expression' doesn't refer to each expression individually.

What i would recommend as a workaround is to 'pivot' your data so that the expressions become a dimension and the values of the expression become a single expression

Data

Dim1,Expr1,Expr2

A,10,1

B,11,2

C,12,3

And pivot it in the script to:

Dim1,Expression,Value

A,Expr1,10

A,Expr2,1

B,Expr1,11

B,Expr2,2

C,Expr1,10

C,Expr2,3

then use 2 dimensions (like josh's example) and in the expression use if(  Expression='Expr1',   <color codes, if(Expression='Expr2', <colorcodes>)

Thanks,

Ram Krishna

Anonymous
Not applicable
Author

I got my requirement done.

I did the color code change in the theme files(theme.json) and its working fine.

Thank you all for your comments and suggestions.