I'm trying to customize the candlestick charts.
I want the rising candlesticks to be hollow and falling candlesticks to be red.
However, when I try to change the stroke and the fill, the horizontal bars representing the high and the low stay the default blue color.
I end up with this: http://imgur.com/NoAzrHere's what my options look like.var options = {candlestick: {hollowIsRising : true,risingColor: {stroke: "Green"},fallingColor : {color: "DarkRed",fill : "DarkRed", stroke: "DarkRed",strokeWidth: 1 }},title : 'Monthly Coffee Production by Country',vAxis: {title: "price"},hAxis: {title: "Month"},seriesType: "candlesticks",series: {1: {type: "line"},2: {type:"line"}}};