简体   繁体   中英

How to remove white space from pie chart in highchart.js?

顶部有空白的蓝色圆圈,用红色圈出。

I want to remove the white space circled in red above. I am using the code below in jsFiddle:

$(function () {

$('#container').highcharts({
    chart: {
        plotBackgroundColor: null,
        plotBorderWidth: null,
        plotShadow: false,borderRadius: 0,
                    borderWidth:0,
    },
    title: {
        text: 'Browser market shares at a specific website, 2010'
    },
     tooltip: false,
    plotOptions: {
        pie: {
            allowPointSelect: true,
            cursor: 'pointer',
            dataLabels: {
                enabled: true,
                color: '#000000',
                connectorColor: '#000000',
                format: '<b>{point.name}</b>: {point.percentage:.1f} %'
            }
        }
    },
    series: [{
        type: 'pie',
        name: 'Browser share',
         size: '115%',
         innerSize: '110%',
        data: [
            ['Firefox',   45.0]

        ]
    },{type: 'pie',
        name: 'Browser share',
         size: '100%',
                        innerSize: '98%',
        data: [
            ['Firefox',   45.0]

        ]}
]});
});

Fiddle: http://jsfiddle.net/jF22s/

use borderWidth :0 in plot options.

  pie: {
        allowPointSelect: true,
        cursor: 'pointer',

         borderWidth: 0, // This removes the border

Updated fiddle : http://jsfiddle.net/jF22s/5/

If that is not acceptable ( as it still has a very minute space ), add a border of same color to the chart, that would remove all space:

borderWidth: 1,
borderColor:'#2F7ED8',

fiddle : http://jsfiddle.net/jF22s/15/

不幸的是,这是臭虫, 这里报道

borderColor: null will fix the issue

plotOptions: {
    pie: {
        borderColor: null,
    }
}

ref: http://jsfiddle.net/highcharts/NK5db/17/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM