Thank you for the reply. I managed to get rid of the flickering using this function instead if the dataBind()
function load_data() { $.getJSON(source.url, function(json) { for (var i=0;i<dataAdapter.totalrecords;i++) { dataAdapter.records[i].Value = json[i].Value; } $('#jqxChart').jqxChart('refresh'); })}
I still had to do the following but at least now it doesn’t flicker.
$('#jqxChart').jqxChart('refresh');
Is there a way to set a new value of a bar and it updates dynamically? I would like to ‘enableAnimations’, but when I enable it, the bar animates from zero and not from the previous value.