BetoDev Report post Posted March 31, 2020 I have three charts, and one mapwithcountries. The thing i would like to do is when click on some plot(column or bar) in one of my three charts i want to "redo" the others charts(column, bar, donut, map) with the specific data about that clicked plot. So how could i achieve this? I know there is events for those charts, but i dont know how to render again (or update) those charts with specific clicked plot. I hope you can help me. Thanks in advance Share this post Link to post Share on other sites
Akash Biswas Report post Posted April 2, 2020 Hi, You can use the "dataPlotClick" API event that gets triggered when a click interaction is made on the chart plots. To update a chart with new dataSource, you need to use "setJSONData() API method invoked on the chart instance of the chart that you want to update. So, use "setJSONData()" on the chart instance within the "dataPlotClick" event handler function. Refer to the below sample for an implementation : http://jsfiddle.net/uyf3e1g1/ Thanks, Akash. Share this post Link to post Share on other sites
BetoDev Report post Posted April 3, 2020 Mmm i can not see the result i only see FusionCharts will render here FusionCharts will render here Share this post Link to post Share on other sites
Akash Biswas Report post Posted April 6, 2020 https://jsfiddle.net/v4js9dq2/ Share this post Link to post Share on other sites