rendro / easy-pie-chart

easy pie chart is a lightweight plugin to draw simple, animated pie charts for single values

Home Page:http://rendro.github.io/easy-pie-chart

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Feature Request: Destroy method

KrishnaPG opened this issue · comments

Need method(s) to cleanup the chart and restore the HTML elements back to their original (clean) state.

A work-around destroy looks like this:

//  Remove the pie charts canvases
$('.pie-chart canvas').remove();

//  Remove the pie chart data contexts, in case you want to rebuild them
$('.pie-chart').removeData('easyPieChart');

@evolross very helpful, thank you!