Highcharts 为标签和标题等留出了空间。为了摆脱空间,需要做几件事:
在我看来,其中一个应该可以工作。但是,如果我只做第一个,图表有点太小,如果我只做第二个,图表有点太大。
$('#container').highcharts({
chart: {
type:'pie',
borderWidth: 1,
plotBorderWidth: 0,
spacingBottom: 0,
spacingTop:0,
spacingLeft:0,
spacingRight:0,
margin: [0, 0, 0, 0]
},
title: {
text:''
},
plotOptions: {
pie: {
size:300,
dataLabels: {
enabled: false,
}
}
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}]
});
http://jsfiddle.net/J3ZFf/
http://api.highcharts.com/highcharts#plotOptions.pie.size