Tooltips getting cutoff in pie charts in highcharts

highcharts, jquery-plugins

Solution

One can adjust the margins `margin:[0,100,0,100],` to shrink the pie chart so that the tooltips/labels will appear. This has been set to automatically scale the chart in Highcharts 3.0.

http://www.highcharts.com/component/content/article/2-news/53-highcharts-3-0-beta-released

http://github.highcharts.com/v3.0Beta/highcharts.js

http://jsfiddle.net/Zvrt6/1/

Problem

I have a pie chart which is being generated from a json string. The pie is getting created correctly but what is happening is the tooltip is getting cutoff when the text to be displayed in the tooltip is large. I have tried increasing the width and height of the svg area. But the charts are generated dynamically so i have no way of setting the chart widht and height dynamically depending on the content.

Original source