File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16812,7 +16812,7 @@ var PieSeries = {
1681216812
1681316813 // arrange points for detection collision
1681416814 each ( data , function ( point ) {
16815- if ( point . dataLabel ) { // it may have been cancelled in the base method ( #407)
16815+ if ( point . dataLabel && point . visible ) { // #407, #2510
1681616816 halves [ point . half ] . push ( point ) ;
1681716817 }
1681816818 } ) ;
Original file line number Diff line number Diff line change @@ -16512,7 +16512,7 @@ var PieSeries = {
1651216512
1651316513 // arrange points for detection collision
1651416514 each(data, function (point) {
16515- if (point.dataLabel) { // it may have been cancelled in the base method ( #407)
16515+ if (point.dataLabel && point.visible ) { // #407, #2510
1651616516 halves[point.half].push(point);
1651716517 }
1651816518 });
Original file line number Diff line number Diff line change @@ -482,7 +482,7 @@ var PieSeries = {
482482
483483 // arrange points for detection collision
484484 each ( data , function ( point ) {
485- if ( point . dataLabel ) { // it may have been cancelled in the base method ( #407)
485+ if ( point . dataLabel && point . visible ) { // #407, #2510
486486 halves [ point . half ] . push ( point ) ;
487487 }
488488 } ) ;
You can’t perform that action at this time.
0 commit comments