hger12345 Report post Posted July 22, 2019 I have set up two column2d fusion charts in PHP. I can confirm they both work independently. In my code I call them $columnChart1 and $columnChart. In php if I do: $columnChart->render(); I can see the first chart. If I do: $columnChart1->render(); I can see the second chart. If I do both renders back to back, it will only render the first chart ie: $columnChart->render(); $columnChart1->render(); In that case only columnChart appears. If I do it in reverse: $columnChart1->render(); $columnChart->render(); In this case I only see the second chart, only columnChart1 appears. How can I make both charts render on the same page? Thanks for any assistance! Share this post Link to post Share on other sites
hger12345 Report post Posted July 22, 2019 I figured it out, my two charts were using the same ID....oops. Thanks anyway! Share this post Link to post Share on other sites
Akash Biswas Report post Posted July 23, 2019 Hi, Glad to know that your problem is resolved. FusionCharts render charts on individual chart containers with unique ids. Thanks, Akash. Share this post Link to post Share on other sites