Skip to content

Commit

Permalink
Show drilldown context menu over chart tooltip (#67311) (#67447)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dosant authored May 27, 2020
1 parent 5c794ec commit c7442b9
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ function getOrCreateContainerElement() {
container.style.left = getMouseX() + 'px';
container.style.top = y + 'px';
container.style.position = 'absolute';
container.style.zIndex = '999';

// EUI tooltip uses 9000
// have to make it larger to display menu on top of tooltips from charts
container.style.zIndex = '9999';

container.id = CONTAINER_ID;
document.body.appendChild(container);
Expand Down

0 comments on commit c7442b9

Please sign in to comment.