是否可以删除系列中的某些点? 我正在寻找某种方法来绘制具有固定后期的图表, 类似的事情:过去1小时。
我知道如何使用动态更新添加点数:
http://www.highcharts.com/demo/dynamic-update
但在我的情况下,点之间的时间间隔不是恒定的, 所以我不能只使用addPoint的转换选项。
谢谢, 奥马尔
答案 0 :(得分:3)
如果您想拥有相同的内容,可以使用与addPoint中相同的逻辑,请参阅:http://jsfiddle.net/JKCLx/1/
但是,为什么不能在shift
中使用addPoint()
参数?
答案 1 :(得分:0)
我想我找到了对自己问题的部分答案:
我可以迭代这样的系列数据点:
http://api.highcharts.com/highcharts#Series.data
然后拨打point.Remove。
此解决方案的问题在于它不会像示例中那样绘制监视器样式, 但更确切地说,每次变化都是整个图表。
$(function () {
$(document).ready(function() {
Highcharts.setOptions({
global: {
useUTC: false
}
});
var chart;
$('#container').highcharts({
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];
setInterval(function() {
var x = (new Date()).getTime(), // current time
y = Math.random();
series.addPoint([x, y], true, false);
// series.data[0].remove(false);
series.data[0].remove(true);
}, 1000);
}
}
},
title: {
text: 'Live random data'
},
xAxis: {
type: 'datetime',
tickPixelInterval: 150
},
yAxis: {
title: {
text: 'Value'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
formatter: function() {
return '<b>'+ this.series.name +'</b><br/>'+
Highcharts.dateFormat('%Y-%m-%d %H:%M:%S', this.x) +'<br/>'+
Highcharts.numberFormat(this.y, 2);
}
},
legend: {
enabled: false
},
exporting: {
enabled: false
},
series: [{
name: 'Random data',
data: (function() {
// generate an array of random data
var data = [],
time = (new Date()).getTime(),
i;
for (i = -19; i <= 0; i++) {
data.push({
x: time + i * 1000,
y: Math.random()
});
}
return data;
})()
}]
});
});
});