带有标志位置的 highcharts highstock 问题

higcharts highstock issue with flag position

我在我的图表中使用 Highstock flags,同时将 squirepin flag shapre 与 template 一起使用,flag 与系列重叠,但如果我在没有模板的情况下使用它,它会起作用美好的。

series: [{
    name: 'USD to EUR',
    data: data,
    id: 'dataseries',
    tooltip: {
        valueDecimals: 4
    }
}, {
    type: 'flags',
    data: [{
        x: Date.UTC(year, 1, 22),
        title: '<span><b>Name</b>:John Doe </span><br><span> Age:20</span><br><span>Gender:Male</span>',
        text: 'Shape: "squarepin"'
    }],
    onSeries: 'dataseries',
    shape: 'squarepin'
}]

这是我的 fiddle 问题,

预期输出:

应该在系列之上

y 属性添加到像

这样的系列中
series: [{
        name: 'USD to EUR',
        data: data,
        id: 'dataseries',
        tooltip: {
            valueDecimals: 4
        }
    }, {
        type: 'flags',
        data: [{
            x: Date.UTC(year, 1, 22),
            title: '<span><b>Name</b>:John Doe </span><br><span> Age:20</span><br><span>Gender:Male</span>',
            text: 'Shape: "squarepin"'
        }, {
            x: Date.UTC(year, 3, 28),
            title: 'A',
            text: 'Shape: "squarepin"'
        }],
        onSeries: 'dataseries',
        shape: 'squarepin',
        y:-70  //place required value
    }]

Fiddle 演示