Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Highcharts Pie Chart.How to set labels in two lines

I'm creating a pie chart in highcharts.

Does anybody know how to set data labels in two lines?

I'm finding this problem when the data labels are too long.

http://jsfiddle.net/larrytron/fSjnD/

    $(function () {
    $('#container').highcharts({
        chart: {
            plotBackgroundColor: null,
            plotBorderWidth: null,
            plotShadow: false
        },
        title: {
            text: 'Browser market shares at a specific website, 2010'
        },
        tooltip: {
            pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
        },
        plotOptions: {
            pie: {
                allowPointSelect: true,
                cursor: 'pointer',
                dataLabels: {
                    enabled: true,
                    color: '#000000',
                    maxStaggerLines:1,                    
                    connectorColor: '#000000',
                    format: '<b>{point.name}</b>: {point.percentage:.1f} %'                   

                },
            }
        },

        series: [{
            type: 'pie',
            name: 'Browser share',
            data: [
                ['Firefox jandler glander gramenauer gramen',   45.0],
                ['IE',       26.8],
                {
                    name: 'Chrome',
                    y: 12.8,
                    sliced: true,
                    selected: true
                },
                ['Safari',    8.5],
                ['Opera',     6.2],
                ['Others',   0.7]
            ]
        }]
    });
});
like image 524
larrytron Avatar asked Aug 20 '13 07:08

larrytron


1 Answers

You can simply set width for dataLabels, see: http://jsfiddle.net/Fusher/fSjnD/1/

style: {
    width: '100px'
}
like image 106
Paweł Fus Avatar answered Nov 02 '22 19:11

Paweł Fus