hi,
i am using an ajax call to receive JSON to bind the data in the ejChart
i call redraw after every bind the first and the second times updates fine but the third time it retrieves the data and draws them but keeps the old ones
i dont know if it will help or no but the second json array contains more elements than the third one
function (chartData) {
console.log(chartData);
$("#container").ejChart({
series: JSON.parse(chartData)
});
$("#container").ejChart("redraw");
};