Reputation: 1497
How can I remove slice out of pie chart pieces?
Reference
Upvotes: 1
Views: 1249
Reputation: 4552
You can control this animation with plotOptions.pie.slicedOffset property.
So, just by setting slicedOffset: 0
, you will get desired behavior.
series: [{
states: {
hover: {
enabled: false,
}
},
name: 'Brands',
slicedOffset: 0,
colorByPoint: true,
data: [{
name: 'IE',
y: 56.33
}, {
name: 'Chrome',
y: 24.03,
sliced: true,
selected: true
}, {
name: 'Firefox',
y: 10.38
}, {
name: 'Others',
y: 0.2
}]
}]
Live example: jsFiddle.
Upvotes: 1