Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a requirement is that, need to display the graphs with different colors based on some conditions like
Take an issue completion percentage graph:
1. For percentage below 100% need to be blue
2. For percentage exactly 100% need to be green
3. For percentage above 100% need to be Red.
Can any one help me out to solving the same.
Thanks & Regards,
Sasi
Hi,
On chart properties you can change background color of your expression:
On definition you can write:
If(value<1,
Blue(),
If(value=1,
Green(),
Red()
)
)
Regards
Aurélien
Hi Thanks for your quick reply..
Will try now and let you know..
Thanks
Hi Aurélien,
As mentioned used the below mentioned condition:
if ([Nov-13]>100, RGB(255,0,0))
But was unable to get the color change for values above 100.
Can you please let me know any other options.
Thanks in advance for your support
I have also same issue with my chart !
Please post if you got proper solution.
Thanks
Vikas
Hi Vikas,
Tried the above mentioned condition, but was unable to get the requirement.
Will let you know once if i found any solution . If you got it please let me know.
Thanks & Regards,
Sasi
Can you post a application?
if ([Nov-13]>100,
RGB(255,0,0),
if(if ([Nov-13]=100,
RGB(0,255,0),
RGB(0,0,255)
)
)
Hello!
Try it:
Hi,
Tried the same. But was able to get only 2 conditions based color.
Thanks & Regards,
Sasi
Good night!
If the solution that you've is correct, let others know that, to use the same solution, marking my answer as correct.
Thank you!