Highcharts - 圆环图,只有一个系列的差距

时间:2014-06-03 15:40:11

标签: highcharts

在甜甜圈图表的顶部,系列中只有1个点,切片的开始和结束之间总是有一个微小的差距:

http://jsfiddle.net/6E2Bx/

    credits: {
        enabled: false
    },
    chart: {
        plotBackgroundColor: 'pink',
        plotBorderWidth: 0,
        plotShadow: false
    },
    title: {
        text: 'See the gap at 0 degrees',
        align: 'center',
        verticalAlign: 'middle',
        y: 0
    },
    plotOptions: {
        pie: {
            borderWidth: 0,
            dataLabels: {
                enabled: true,
                distance: -30,
                style: {
                    fontWeight: 'bold',
                    color: 'white',
                    textShadow: '0px 1px 2px black'
                }
            },
            startAngle: 0,
            endAngle: 360,
            center: ['50%', '50%']
        }
    },
    series: [{
        type: 'pie',
        name: 'Browser share',
        innerSize: '70%',
        data: [
            ['Full', 1]
        ]

    }

弥补差距:

gap

我在这里错过了一些设置吗?

我不想直接修改drawing / svg元素,我觉得borderWidth: 0应该处理这个。

0 个答案:

没有答案