I am able to set the colour of a graphic using the following code:
chart.series[1].data[1].graphic.attr("fill","red");
However, if I try to retrieve the value, i get a null response: NaN
console.log(chart.series[1].data[1].graphic.attr("fill"));
How do I check the current fill?
Many thanks
You should use
http://jsfiddle.net/EzxJ9/1/