If you’re new to Qlik Sense, start with this Discussion Board and get up-to-speed quickly.
Hi,
How can we create a color scheme in Qlik Sense ??? User Defined Color Scheme ??
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.
Hi Bijoy,
Use custom color using By expression, you can find the option under colors and legend section in chart properties.
Thanks,
Ram Krishna
Hi Ram,
Thanks for your quick Reply,
Actually, this is my requirement. Color by expression for two different measures in a Combo Chart
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
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.