11

我在 highcharts 中创建一个饼图。

有人知道如何在两行中设置数据标签吗?

当数据标签太长时,我发现了这个问题。

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]
            ]
        }]
    });
});
4

2 回答 2

21

您可以简单地为 dataLabels 设置宽度,请参阅:http: //jsfiddle.net/Fusher/fSjnD/1/

style: {
    width: '100px'
}
于 2013-08-20T10:21:25.187 回答
6

您可以简单地插入
数据标签:

 data: [
      ['Firefox jandler glander <br><b>gramenauer gramen</b>',   45.0],

请注意,由于某种原因,除非您重新添加使用标签,否则第二行会丢失粗体格式。

http://jsfiddle.net/ZMLSW/

于 2013-08-20T08:14:33.150 回答