1
我使用以下代碼使用websocket連接創建動態Highchart。有沒有一種方法可以突出顯示(使用其他顏色)圖形中選定的範圍。例如,如果從WebSocket的值高於25則這些值必須直到值低於25Highcharts中的高亮點範圍
chart: {
type: 'spline',
animation: Highcharts.svg, // don't animate in old IE
marginRight: 10,
events: {
load: function() {
// set up the updating of the chart each second
var series = this.series[0];
var connection = new WebSocket('ws://localhost:8091');
connection.onmessage = function (event) {
var x = (new Date()).getTime(), // current time
y = parseInt(event.data);
series.addPoint([x, y], true, true);
};
//////////////////////////
}
}
},
多個系列是一種常見的回答這個問題。 –