I have attached an pie chart image. My issue is that some labels in pie chart are cropped. How Can I avoid this issue ?
<div class="col-lg-4" style="position: relative;">
<h3 style="text-align: center; margin-bottom: 10px;">STB Report Summary (Lyca TV)</h3>
im<div id="chartdiv3" style="width:100%;height: 200px;"</div>
</div>
My Chart configuration as follows.
var chart3 = AmCharts.makeChart("chartdiv3", {
"type": "pie",
"theme": "light",
"dataProvider": stock_control_report,
"titleField": "title",
"valueField": "value",
"labelRadius": 5,
"fontSize":"12",
"radius": "42%",
"innerRadius": "0%",
"balloonText": "[[country]]<br><span style='font-size:14px'><b>[[value]]</b> ([[percents]]%)</span>",
"labelText":"[[country]] [[value]]",
"export": {
"enabled": true
}
});
chartdiv3
is the div that i used to load graph.