Reputation: 149
how can I remove all the spacing? except margin
and spacing
Demo: http://jsbin.com/jukobenaso/edit?html,js,output
Upvotes: 1
Views: 1588
Reputation: 7896
As the chart's height is 200:
$('#chart').highcharts({
chart: {
type: 'pie',
height: 200,
so you could set series size to 200 as well:
plotOptions: {
pie: {
showInLegend: true,
tooltip: {
enable: false
}
},
series: {
marker: {
enabled: false
},
dataLabels: {
enabled: false
},
enableMouseTracking: false,
size: 200,
innerSize: '80%',
center: [80, '50%']
}
},
Example: http://jsbin.com/kobunigami/edit?html,js,output
Upvotes: 2