I had a Combo chart that had two series: a line type and an area type. I had the line chart series listed first in the options, and then the area chart series. This made the line appear behind the area which is what I wanted. Basically the z-index for the line was lower than the area.
I now need to add a third series, another line.
series: {
0: {lineDashStyle:[10,5], lineWidth: 2, color: '#888', pointSize:0, enableInteractivity: false},
1: {type: 'area', lineDashStyle:[0]},
2: {lineDashStyle:[2,2], lineWidth: 2, color: '#888', pointSize:0, enableInteractivity: false}
},
I know that if we put series 2 before series 1 in the above code, this "should" give me what I want. But because of the complexity of the data and the rest of the code, we are running into problems we don't have when we have the series in the above order.
Is there a way to set the z-index, or s order, or similar for each series, so that I can make the Area chart appear in front of both lines? Right now, the series 2 line appears in front and we don't want that.