How to destroy Morris chart data before updating new data in controller using angularjs?
i faced similar problem .. this is how i solved it. before drawing the new chart, use .empty to clear the div.
$("#area-chart2").empty();
thats all. works like magic.
hope this solves your problem