score:2

Accepted answer

you can use two xaxis, like in the example: http://jsfiddle.net/sbochan/phtd7r1t/2/

 xaxis: [{
            offset: 15
        },{
            linkedto:0,
            offset: -76
 }],

score:0

you could use some of the positioning options to achieve this. if the height is dynamic it might be a bit difficult, but for static height charts this approach should work fine.

first edit the yaxis[1].top to be '73%' (moving the "volume" chart further down to create a gap).

then offset your x-axis with xaxis: { offset: -81 } to move it in between the two charts.

see this jsfiddle demonstration of the result.


Related Query

More Query from same tag