From 514042760f1b57a5d48a50c73ae5ab352bc38498 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torstein=20H=C3=B8nsi?= Date: Mon, 7 May 2018 13:19:32 +0200 Subject: [PATCH] Fixed #8276, wrong z-index for halo in styled mode. --- js/parts/Interaction.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/parts/Interaction.js b/js/parts/Interaction.js index 25bdfc8868c..01fb3d93a2c 100644 --- a/js/parts/Interaction.js +++ b/js/parts/Interaction.js @@ -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)); /*= } =*/