Tom83 Report post Posted February 17, 2014 The charts are in a tab (jquery), which is not selected while initializing and creating the charts.When the area in which the charts are rendered is not visible while creating the Charts, the position of the label is on top and not centered.- The area is visible while creating / rendering the chart: - The area is not visible while creating / rendering the chart: Share this post Link to post Share on other sites
Haritha Report post Posted February 18, 2014 Hi Tom, It seems that the chart gets loaded before the container after which the chart again re-sizes itself according to the dimensions of the container. It is because of this reason that you see the problem of the chart legend getting distorted. To avoid this problem, please try the following : 1. On "onClick" event of each tab, call a function that disposes the chart and creates the chart again. 2. After disposing the chart, introduce some delay so that the container gets loaded before the chart. 3. Retain the code of chart creation in each of the Divs, so that you may choose to show a chart in the tab when the page is first loaded. Awaiting your feedback. Share this post Link to post Share on other sites
crystalgarcia Report post Posted August 28, 2014 Hello.. Can u explain about how to call the dispose() on onclick event? Share this post Link to post Share on other sites
Nabajeet Report post Posted September 2, 2014 Hi, Please check out the fiddle for a simple demo on how to dispose chart.http://jsfiddle.net/TumnU/133/ Hope this helps. Share this post Link to post Share on other sites
crystalgarcia Report post Posted September 3, 2014 Hi Nabajeet.. Is it possible to call the dispose() in the same page where the chart is rendered without the onclick event? Share this post Link to post Share on other sites
Nabajeet Report post Posted September 4, 2014 Hi,Yes, you can call dispose() in the same page where the chart is rendered by using any events provided by FusionCharts or add it to your custom javascript event.Please check this demo:http://jsfiddle.net/nabajeet_fusioncharts/31nra0kz/2/ Hope this helps. Share this post Link to post Share on other sites