higcharts highstock问题与旗帜位置

时间:2017-11-17 06:35:20

标签: jquery highcharts highstock

我在我的图表中使用Highstock flags,而使用带有模板的squirepin标记shapre,标志与系列重叠,但如果我在没有模板的情况下使用它,它可以正常工作。

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 有问题,

预期产量: enter image description here

它应该在系列之上。

1 个答案:

答案 0 :(得分:1)

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演示