darian_li

Members
  • Content count

    1
  • Joined

  • Last visited

Everything posted by darian_li

  1. background: my page include two chart. one is MsStackedColumn2DLineDY, another is machine state of gantt. after these both chart are renderred they are disposed to make sure render them again successfully. then problem occurred that gantt chart cannot be disposed which is 'Object doesn't support this property or method'. code demo: chart = new FusionCharts("<%=path%>/fc/swf/Gantt.swf", "esChartId", "880", "200", "0", "0"); chart.setDataURL( "<%=path%>/fc/data/Gantt.xml" ); chart.render("divEsChart"); var eschart = getChartFromId("esChartId"); eschart.dispose(); solutions: besides, i try to replace to use FusionCharts("esChartId").dispose() but it is also unuseful. appreciate you.