x 轴上的 Highcharts 虚线不会一直穿过

Highcharts dashed line on x axis not going all the way across

我有这个 highchart 的 jsfiddle,我希望虚线从 0 一直穿过图表 10.I 已经在另一个名为 scatter 的图表上尝试过它并且它有效我希望它有效在类型柱状图上。我该怎么做呢? highcharts api 中是否有我遗漏的内容?

https://jsfiddle.net/arielkotch/n9dk126y/1/

Highcharts.chart('container', {
chart: {
    type: 'column',
renderTo:'#container'
},
title: {
    text: ''
},
xAxis: {
    categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']
},
yAxis: {
    min: 0,
    title: {
        text: 'Total fruit consumption'
    },
    stackLabels: {
        enabled: true,
        style: {
            fontWeight: 'bold',
            color: (Highcharts.theme && Highcharts.theme.textColor) || 'gray'
        }
    }
},
tooltip: {
    headerFormat: '<b>{point.x}</b><br/>',
},
plotOptions: {
    column: {
        stacking: 'normal',

    }
},
series: [{
        name: 'John',
        borderColor: '#0000FF',
        color: '#FFFFFF',
        data: [5, 3, 4, 7, 2]
    }, {
        name: 'Jane',
        borderColor: '#0000FF',
        color: '#0000FF',
        data: [2, 2, 3, 2, 1]
    },
    {

        //5-width
        //height 
        data: [
            [4, 10],
            [0, 10]
        ],
        lineWidth: 2,
        dashStyle: "Dash",
        lineColor: 'black',
        type: 'scatter',
        marker: {
            enabled: false
        },
        showInLegend: false,
        enableMouseTracking: false
    },
    {
        data: [
            [0, 20]
        ],
        lineWidth: 2,
        dashStyle: "Dash",
        lineColor: 'black',
        type: 'scatter',
        marker: {
            enabled: false
        },
        showInLegend: false,
        enableMouseTracking: false
    }
]
});

要创建这种类型的线条,您应该使用 yAxis.plotLines:

yAxis: {
    ...,
    plotLines: [{
        value: 10,
        zIndex: 2,
        width: 2,
        dashStyle: "Dash",
        color: 'black',

    }]
}

现场演示:https://jsfiddle.net/BlackLabel/ujyrz4h1/

API参考:https://api.highcharts.com/highcharts/yAxis.plotLines