score:17

Accepted answer

Please use color as hex i.e "#ff0000" instead of 'red'.

http://jsfiddle.net/4HkXf/3/

score:0

I can't say exactly what the reason is.

but, here is the solution for it

use type in chart level

chart:{
type: 'area'
}

this will be applied to all the series

here is your updated fiddle http://jsfiddle.net/4HkXf/1/

hope this will be of some use to you.

score:2

fillOpacity: 0.1,
color: "rgb(0,0,0)"

seems to work on all browsers

fillOpacity: 0.1,
color: "#000"

does not work on all browsers

color: "rgba(0,0,0,0.1)"

does not work on all browsers

score:5

I resolved it by removing fillOpacity, and instead specifying opacity as part of the color using rbga:

series: [{
    name: 'Buy / Sell ',
    data: data.shares_change,
    type: 'column',
    color: 'rgba(0,128,0,0.4)', // #080
    negativeColor: 'rgba(128,0,0,0.4)', // #800
    pointWidth: 8
}]

Related Query