morgenweck Report post Posted May 1, 2015 (edited) I'm using the jQuery plug in and have no problems with $("#chart-container").insertFusionCharts({ type: 'heatmap', renderAt: 'chart-container', // width: '400', // height: '300', dataFormat: 'json', id: "BoxId" }); and $("#chart-container").updateFusionCharts({ dataFormat: "json", dataSource: { etc but my question is how can I clear the chart? $("#chart-container").clearChart(); does not seem to work Edited May 1, 2015 by morgenweck Share this post Link to post Share on other sites
Vishalika Report post Posted May 4, 2015 Hi, You can use the API disposeFusionCharts(), which remove a chart instance from page and memory. Refer this link for the APIs used by jquery in FusionCharts: http://docs.fusioncharts.com/tutorial-using-with-javascript-libraries-jquery-api-reference.html Hope this helps. Share this post Link to post Share on other sites
KarenHeinz Report post Posted December 8, 2016 Real-time charts expose a JavaScript API that enables you to clear charts at the client-side. To do this, you need to: Get a reference to the chart Call the clearChart() method Read my essay Share this post Link to post Share on other sites