I\'m unable to figure out myself or find a proper example on how to perform live updates in jqPlot in a similar way as shown in this highcharts example.
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