3

是否可以从系列中删除某些点?我正在寻找某种方法来绘制具有固定回溯期的图表,例如:最后 1 小时。

我知道如何使用动态更新添加积分:

http://www.highcharts.com/demo/dynamic-update

但在我的情况下,点之间的时间间隔不是恒定的,所以我不能只使用addPoint的 shift 选项。

谢谢, 奥马尔

4

2 回答 2

3

如果你想拥有相同的,你可以使用与 addPoint 中相同的逻辑,参见:http: //jsfiddle.net/JKCLx/1/

但是,为什么不能只使用shift参数 in addPoint()

于 2013-10-08T10:38:49.757 回答
0

我想我找到了自己问题的部分答案:

我可以像这样遍历系列数据点:

http://api.highcharts.com/highcharts#Series.data

然后调用point.Remove

这个解决方案的问题是它没有像示例中那样绘制监视器样式,而是在每次更改时重新绘制整个图表。

http://jsfiddle.net/JKCLx/

$(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;
                })()
            }]
        });
    });

});
于 2013-10-07T08:53:24.010 回答