Highstock 是否支持面板的右边框(yAxis)?

does Highstock support a right border for a panel (yAxis)?

Highstock 是否支持面板右边框 (yAxis)?现在,我只能绘制左边框、上边框和下边框。 附上一张图片来描述我的问题

您可以再添加几个未附加到系列的 y 轴。

        yAxis: [{
            labels: {
                align: 'right',
                x: -3
            },
            title: {
                text: 'OHLC'
            },
            height: '60%',
            lineWidth: 2,
            opposite: false
        }, {
            labels: {
                align: 'right',
                x: -3
            },
            title: {
                text: 'Volume'
            },
            top: '65%',
            height: '35%',
            offset: 0,
            lineWidth: 2,
            opposite: false
        },{
            height: '60%',
            lineWidth: 2
        }, {

            top: '65%',
            height: '35%',
            offset: 0,
            lineWidth: 2
        }],

http://jsfiddle.net/blaird/6oy17bhu/