Skip to main content

New to Qlik Sense

If you’re new to Qlik Sense, start with this Discussion Board and get up-to-speed quickly.

Announcements
Qlik Cloud Maintenance is scheduled between March 27-30. Visit Qlik Cloud Status page for more details.
cancel
Showing results for 
Search instead for 
Did you mean: 
bijoylalu
Creator
Creator

Color Schema creation in QlikSense

Hi,

   

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

1 Solution

Accepted Solutions
bijoylalu
Creator
Creator
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

bijoylalu
Creator
Creator
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

bijoylalu
Creator
Creator
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.