@evergis/charts 2.0.135 → 2.0.137
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -754,7 +754,7 @@ const drawTooltip = _ref => {
|
|
|
754
754
|
const format = d3.format(',');
|
|
755
755
|
const pieTooltipContainer = d3.select(container).select("." + pieChartclassNames.pieTooltipContainer);
|
|
756
756
|
const isEmpty = pieTooltipContainer.empty();
|
|
757
|
-
const tooltipContainer = isEmpty ? d3.select(container).append('div').attr('class', pieChartclassNames.pieTooltipContainer + " " + (tooltipClassName || '')).style('position', 'absolute').style('opacity', '0') : pieTooltipContainer;
|
|
757
|
+
const tooltipContainer = isEmpty ? d3.select(container).append('div').attr('class', pieChartclassNames.pieTooltipContainer + " " + (tooltipClassName || '')).style('position', 'absolute').style('opacity', '0').style('z-index', '103') : pieTooltipContainer;
|
|
758
758
|
|
|
759
759
|
if (tooltipStyle) {
|
|
760
760
|
Object.entries(tooltipStyle).forEach(_ref2 => {
|