I want to have conditional colors to Bars in a Bar CHart. If the figure is +ve then it should be Green or else should be Red. Can anybody tell me how to do that?
use a stocked bar chart. You'll want to make a couple of helper columns. First one should be if(value>10,value,0). Second one should be if(value<=10,value,0). Plot the helper colums only.