我试图添加标记加载,在第一次工作时,我使用的持续更新图表如下https://www.highcharts.com/stock/demo/dynamic-update然后如下https://www.highcharts.com/stock/demo/flags-shapes标志的动态数据。
能否请您给我加标志的连续数据的一些解决方案?另外,我想,如果连续数据超过一定限度时,标志应该出现在那个系列。我想对连续数据也标志
类似于添加点基本系列,你也应该补充的战旗系列几点:
events: {
load: function () {
var series = this.series[0],
flagSeries = this.series[1];
setInterval(function () {
var x = (new Date()).getTime(), // current time
y = Math.round(Math.random() * 100);
series.addPoint([x, y], true, true);
flagSeries.addPoint({
x: x,
title: y
});
}, 1000);
}
}
现场演示:https://jsfiddle.net/BlackLabel/rh8jug5d/
API:https://api.highcharts.com/class-reference/Highcharts.Series#addPoint