I have got problem. Around my 3D Pie Highchart, there is white space, but i have got Background, set by HTML, and i want to see it. So please how do I remove it?

有帮助吗?

解决方案

Add backgroundColor: 'transparent',

$('#container').highcharts({
    chart: {
        type: 'pie',
        options3d: {
            enabled: true,
            alpha: 45,
            beta: 0
        },
        backgroundColor: 'transparent',
    },
...

DEMO

其他提示

set margin to 0

margin: [0,0,0,0]

here is a jsfiddle link for that

I hope this is the space you are looking to remove.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top