highcharts系列类型的“标志”不显示系列之外的点

时间:2019-09-24 09:53:05

标签: javascript highcharts

我使用highcharts系列类型“ flag”,并具有一些数据点。 我的数据点来自例如[-100; 100] 但是某些标志值不在此范围内。我找不到任何解决方案可以显示这些超出范围的标志。

1 个答案:

答案 0 :(得分:0)

该标志不在line系列上,因为x值超出范围:

series: [{
    id: "data",
    data: [
        [1569269259533, 100],
        [1569269319534, 100]
    ]
}, {
    type: 'flags',
    useHTML: true,
    y: -18,
    id: 'flags',
    onSeries: 'data'
}],
chart: {
    events: {
        load: function(e) {
            var flagSerie = this.get('flags');
            flagSerie.setData([{
                x: 1569269299533,
                count: 3
            }]);
        }
    }
}

实时演示: http://jsfiddle.net/BlackLabel/rmonx6Lz/

API参考: https://api.highcharts.com/highstock/series.flags.onSeries