How to add a scroll with multi-panes?
Please look at the fiddle, 3rd pane is overlapping
yAxis: [{
title: { text: 'Coffee Cups'},
height: '60%',
offset: 0,
lineWidth: 2
}, {
title: { text: 'Hazelnut Cups' },
top: '65%',
height: '60%',
offset: 0,
lineWidth: 2
}, {
title: { text: 'Choco Cups' },
top: '130%',
height: '60%',
offset: 0,
lineWidth: 2
}]
Note: In my scenario, it can be 100 multi panes.
The sum of the heights of your y-axes is more than
100%
which causes the overlapping. You should not exceed 100%:Live demo: http://jsfiddle.net/BlackLabel/g7uto6xc/
API Reference: https://api.highcharts.com/highstock/yAxis.height
EDIT:
After a lot of customizations, the wanted result was achieved:
Live demo: http://jsfiddle.net/BlackLabel/u293pvnj/