2

我正在使用带有动态生成的数据和绘图名称的 highcharts。(通常在 4 到 8 个数据点之间,但会有 2 个小数字。)

其中一些有点长,导致饼图很小,所以我设置了绘图选项样式宽度以强制它们换行并跨越多行。

然而,在我的一些图表上,标签是重叠的,不知道如何修复它。

有没有人有任何想法?

http://jsfiddle.net/d600burton/TkPBq/

var chart = new Highcharts.Chart({
    chart: {
        renderTo: 'container',
        plotBackgroundColor: null,
        plotBorderWidth: 1,
        plotShadow: false
    },
    subtitle: {
        text: 'Drag the handle in the lower right to resize'
    },
    tooltip: {
        pointFormat: '{series.name}: <b>{point.percentage:.2f}%</b>'
    },
    plotOptions: {
        pie: {
            allowPointSelect: true,
            cursor: 'pointer',
            minSize: 1,
            dataLabels: {
                        style: {
                            width: '100px'
                        },                     
                enabled: true,
                color: '#000000',
                format: '<b>{point.name}</b>: {percentage:.2f} %'
            }
        }
    },
    series: [{
        type: 'pie',
        name: 'Browser share',
        data: [
            {name: "On Hire", y: 2884},
            {name: "Collection Note", y: 674},
            {name: "Off Hire Not Confirmed", y: 23},
            {name: "Goods In", y: 41}
        ]

    }]
});
4

1 回答 1

0

连接器和 datalables 是独立生成的,所以如果你设置小,连接器不会“移动”。换句话说,我建议考虑修改宽度。

于 2013-05-23T14:52:13.303 回答