Understanding a boolean expression -


i trying set rule using boolean expression when x within range (6.0 -8.0) yellow, below green , above red. appreciated

you mean this?

if(x<6) { color=green; }  else { if(x<=8){ color=yellow; }else{ color=red; } } 

Comments

Popular posts from this blog

plot - Remove Objects from Legend When You Have Also Used Fit, Matlab -

java - Why does my date parsing return a weird date? -

Need help in packaging app using TideSDK on Windows -