I want an area chart with opacity 0.1. If I do not specify the color, everything works fine:
plotOptions: {
series: {
fillOpacity: 0.1
}
}
series: [{
name: '1',
data: [1,2,3],
type: 'area'
}
But when I change the color, the opacity is ignored:
plotOptions: {
series: {
fillOpacity: 0.1
}
}
series: [{
name: '2',
data: [0,1,2],
type: 'area'
color: 'red'
}
Please use color as hex i.e "#ff0000"
instead of 'red'.