Forum Discussion
Anonymous
7 years agoNot applicable
Change Chart Color
I want the color of the charts to change whenever the data value is under constant line.
Gesserovic
7 years agoFrequent Visitor
Create a custom column, where it will be validaded if the value is under constant line.
something like this:
Column = if(Table[Value] >= 1,"Over_Constant_line","Under_Constant_line")
and then add this custom column to legend and decide your colours.