learning FC Report post Posted March 19, 2013 Hi, i am try to render chart with same id and div but with diiferent data on click, like this var myChart = new FusionCharts("Column2D","myChart1", "85%", "80%", "0" ); myChart.setJSONData(t); myChart.render("chartContainer"); but the error is thrown: ParameterException: #06091847 chartobject-1 Warning >> A FusionChart oject with the specified id "myChart1" already exists. Renaming it to chartobject-1How do i solve this? is this possible bcoz m using a div with a few links and depending upon the link the data is to be displayed in the same chart removing the existing chart. Please help... Share this post Link to post Share on other sites
learning FC Report post Posted March 19, 2013 I found the way to implement this: var chartReference = FusionCharts( "myChartId" ); chartReference.setXMLUrl( "newData.xml" ); Hi, i am try to render chart with same id and div but with diiferent data on click, like this var myChart = new FusionCharts("Column2D","myChart1", "85%", "80%", "0" ); myChart.setJSONData(t); myChart.render("chartContainer"); but the error is thrown: ParameterException: #06091847 chartobject-1 Warning >> A FusionChart oject with the specified id "myChart1" already exists. Renaming it to chartobject-1How do i solve this? is this possible bcoz m using a div with a few links and depending upon the link the data is to be displayed in the same chart removing the existing chart. Please help... Share this post Link to post Share on other sites
Guest Sumedh Report post Posted March 19, 2013 Hi, It's glad to know,that you have managed to resolve your issue. Share this post Link to post Share on other sites