Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to do color coding for feb month in gray color
Hello Rajitha,
Considering your snapshot as the script below in a simplistic way:
LOAD * INLINE [
Month, Dim, Value
Jan, 1, 0.07
Jan, 2, 0.08
Feb, 1, 0.1
Feb, 2, 0.1
Mar, 1, 0.08
Mar, 2, 0.1
];
You must set color to "By expression".
Then set your expression as below:
if(Month='Feb',hsl(0,0,0.7),if(Dim=1,rgb(0,101,128),rgb(135,32,93)))
Regards,
Hello Rajitha,
Considering your snapshot as the script below in a simplistic way:
LOAD * INLINE [
Month, Dim, Value
Jan, 1, 0.07
Jan, 2, 0.08
Feb, 1, 0.1
Feb, 2, 0.1
Mar, 1, 0.08
Mar, 2, 0.1
];
You must set color to "By expression".
Then set your expression as below:
if(Month='Feb',hsl(0,0,0.7),if(Dim=1,rgb(0,101,128),rgb(135,32,93)))
Regards,