半圆形圆环图中的问题

时间:2013-12-02 10:44:07

标签: highcharts donut-chart

我正在尝试制作圆形甜甜圈图表 - : 以下是我正在尝试的代码。 问题 - :在圆形图的基础上变平。

$(function () {
$('#container').highcharts({
    chart: {
        plotBackgroundColor: null,
        plotBorderWidth: 0,
        plotShadow: false
    },
    title: {
        text: 'Browser<br>shares',
        align: 'center',
        verticalAlign: 'middle',
        y: 50
    },
    tooltip: {
        pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
    },
    plotOptions: {
        pie: {
            dataLabels: {
                enabled: true,
                distance: -50,
                style: {
                    fontWeight: 'bold',
                    color: 'white',
                    textShadow: '0px 1px 2px black'
                }
            },
            startAngle: 1,
            endAngle: 360,
            center: ['50%', '75%']
        }
    },
    series: [{
        type: 'pie',
        name: 'Browser share',
        innerSize: '40%',
        data: [
            ['Firefox',   45.0],
            ['IE',       26.8],
            ['Chrome', 12.8],
            ['Safari',    8.5],
            ['Opera',     6.2],
            ['Others',   0.7],
             ['Safari',    8.5],
            ['Opera',     6.2],
            ['Others',   0.7]
        ]
    }]


   });
});

我希望该图表显示为整圆,整个图表位于此图表的中心。 虽然甜甜圈图表可以在http://www.highcharts.com/demo/pie-donut获得,但它就像一个完整的圆圈,中间没有空格。

1 个答案:

答案 0 :(得分:0)

我认为问题在于你为饼图设置了错误的中心,请参阅:http://jsfiddle.net/na86z/7/

应该是:

center: ['50%', '50%']