Skip to content

Commit

Permalink
Fixed #8276, wrong z-index for halo in styled mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
TorsteinHonsi committed May 7, 2018
1 parent 75f4145 commit 5140427
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/parts/Interaction.js
Expand Up @@ -821,15 +821,15 @@ extend(Point.prototype, /** @lends Highcharts.Point.prototype */ {
halo.attr({
'class': 'highcharts-halo highcharts-color-' +
pick(point.colorIndex, series.colorIndex) +
(point.className ? ' ' + point.className : '')
(point.className ? ' ' + point.className : ''),
'zIndex': -1 // #4929, #8276
});
halo.point = point; // #6055

/*= if (build.classic) { =*/
halo.attr(extend({
'fill': point.color || series.color,
'fill-opacity': haloOptions.opacity,
'zIndex': -1 // #4929, IE8 added halo above everything
'fill-opacity': haloOptions.opacity
}, haloOptions.attributes));
/*= } =*/

Expand Down

0 comments on commit 5140427

Please sign in to comment.