Hal

Members
  • Content count

    1
  • Joined

  • Last visited

About Hal

  • Rank
    Forum Newbie
  1. Just thought I would share the syntax for dropping all the charts on a page before you start creating them from scratch. <script type="text/javascript"> $(document).ready(function () { // remove previous instances of fusion charts for (chart in FusionCharts.items) { FusionCharts(chart).dispose(); } }); </script>