ForceINDEX
(1) How do I change the blue HISTORGRAM bars to
up = green
down = red
(1) How do I change the blue HISTORGRAM bars to
up = green
down = red
if(nForce1 < 0){
setDefaultBarFgColor(Color.red, 0)
}
else if(nForce1 > 0){
setDefaultBarFgColor(Color.green, 0)
}
return new Array(nForce1, nForce2);
}
Comment