jqPlot:如何实时更新图表

时间:2012-05-05 06:52:56

标签: jqplot

我无法弄清楚自己或找到一个关于如何在jqPlot中执行实时更新的正确示例,其方式与此高级图example中显示的类似。

3 个答案:

答案 0 :(得分:21)

基于this,我准备了以下示例:

$(document).ready(function() {
    var plot1 = $.jqplot('chart1', [new Array(1)], {
        title: 'Live Random Data',
        series: [
            {
            yaxis: 'y2axis',
            label: '',
            showMarker: false,
            fill: false,
            neighborThreshold: 3,
            lineWidth: 2.2,
            color: '#0571B6',
            fillAndStroke: true}
        ],
        axes: {
            xaxis: {
                renderer: $.jqplot.DateAxisRenderer,
                tickOptions: {
                    formatString: '%H:%M:%S'
                },
                numberTicks: 10
            },
            y2axis: {
                min: 100,
                max: 150,
                tickOptions: {
                    formatString: '%.2f'
                },
                numberTicks: 15
            }
        },
        cursor: {
            zoom: false,
            showTooltip: false,
            show: false
        },
        highlighter: {
            useAxesFormatters: false,
            showMarker: false,
            show: false
        },
        grid: {
            gridLineColor: '#333333',
            background: 'transparent',
            borderWidth: 3
        }
    });

    var myData = [];
    var x = (new Date()).getTime() - 101000;
    var y;
    var i;
    for ( i = 0; i < 100; i++) {
        x += 1000;
        y = Math.floor(Math.random() * 100);
        myData.push([x, y]);
    }

    plot1.series[0].data = myData;
    plot1.resetAxesScale();
    plot1.axes.xaxis.numberTicks = 10;
    plot1.axes.y2axis.numberTicks = 15;
    plot1.replot();

    function updateSeries() {
        myData.splice(0, 1);
        x = (new Date()).getTime();
        y = Math.floor(Math.random() * 100);
        myData.push([x, y]);

        plot1.series[0].data = myData;
        plot1.resetAxesScale();
        plot1.axes.xaxis.numberTicks = 10;
        plot1.axes.y2axis.numberTicks = 15;
        plot1.replot();
    }

    window.setInterval(updateSeries, 1000);
});

See this jsfiddle to test it out.

答案 1 :(得分:7)

我在JSFiddle jsfiddle.net/meccanismocomplesso/QAr4r/上添加了一个示例,它再现了您链接的示例。

我试图让话题尽可能更加通用。如果您需要更多解释 请阅读this article

var plot1 = $.jqplot('myChart', [data], options);
...
plot1.series[0].data = data; // update the graph

答案 2 :(得分:3)

var plot1;

function updatePlot(data){
plot1 = $.jqplot('myChart', [data], options);
}


function reDrawPlot(data){`
updatePlot(data);
plot1.replot();
}

....
initialize plot
plot1 = $.jqplot('myChart', [data], options);
....


call function reDrawPlot with the new data as a parameter