score:0

Accepted answer

i solved...

to remove that shadow around a point when hover, i must to add this:

plotoptions: {
            series: {
                states:{
                    hover:{
                        halo: false
                    }
                }
            }
    },

halo: false

while if you want, is possible to customize halo:

http://api.highcharts.com/highcharts#plotoptions.pie.states.hover.halo


Related Query