How to change colour of progress wheel according to label value in kibana canvas

Hi, how to change colour of progress wheel according to label value in kibana canvas?

Hi @Malini_Sahoo, we actually have a recent thread that goes through how to setup conditional colors in Canvas expressions. Let me know if this helps.

Hi @tims, I am unable to change colour of fill .. according to value in progress wheel,
eg. for value greater than 90% i want whole wheel to change color from red to green ..instead of just changing the metric colour

Your use case is similar to this one: Conditional colouring using kibana canvas expression editor The only difference is instead you would pass valueColor={if {gt 0.9} then="red" else="green"} into the progress function to conditionally set the color of the progress bar.

Thank you, it worked