Multiple independent axis

Hia, I am trying to set up a graph as shown in this script:

http://jsfiddle.net/tXz73/

Essentially a higher / lower percentage stacked chart and then an index chart on the right axis (not% based)

I have a problem that the data in the "index" affects the scale of the columnar column charts?

I have installed

yAxis: 1

      

but that doesn't seem to isolate the series?

Is there a flag I can set to stop this?

+3


source to share


1 answer


got it! In chart setup:

alignTicks: false,

      

this disables 2 axes, then:



gridLineWidth: 0,

      

Inside the second y-axis definition keeps the chart in order.

+4


source







All Articles