Skip to content

Commit

Permalink
Show drilldown context menu over chart tooltip (elastic#67311)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dosant committed May 27, 2020
1 parent ad25b23 commit a062109
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 a062109

Please sign in to comment.