我使用以下代码使用websocket连接创建动态Highchart。有没有办法在图表中突出显示(使用其他颜色)所选范围。例如,如果来自websocket的值高于25,则必须对这些值进行不同的着色,直到值降至25以下。
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);
};
//////////////////////////
}
}
},