Pie3D chart with long labels

Created using FusionCharts Suite XT - www.fusioncharts.com

by Christian Storb

HTML

<script src="http://static.fusioncharts.com/code/latest/fusioncharts.js"></script>
<script src="http://static.fusioncharts.com/code/latest/fusioncharts.charts.js"></script>
<script src="http://static.fusioncharts.com/code/latest/themes/fusioncharts.theme.fint.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<div id="chart-container">FusionCharts will render here</div>

JavaScript

FusionCharts.ready(function () {
    var demographicsChart = new FusionCharts({
        type: 'pie3d',
        renderAt: 'chart-container',
        width: '450',
        height: '300',
        dataFormat: 'json',
        dataSource: {
            "chart": {
                    "caption": "Age profile of website visitors",
                    "subCaption": "Last Year",
                    "startingAngle": "120",
                    "showLabels": "1",
                    "showLegend": "1",
                    "enableMultiSlicing": "0",
                    "slicingDistance": "15",
                    //To show the values in percentage
                    "showPercentValues": "1",
                    "showPercentInTooltip": "0",
                    "theme": "fint",
                    "showPercentInToolTip": "1"
            },
                "data": [{
                "label": "Teenage Drinking is bad for the society",
                    "value": "1250400",
                    "displayValue": "TDBS"

            }, {
                "label": "Adult",
                    "value": "1463300"
            }, {
                "label": "Mid-age",
                    "value": "1050700"
            }, {
                "label": "Senior",
                    "value": "491000"
            }]
        }
    });
    demographicsChart.render();
});