We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2d1283 commit 4cbfd3cCopy full SHA for 4cbfd3c
2 files changed
components/Visualization/DonutChart/styles.scss
@@ -2,10 +2,9 @@
2
3
.donut-tooltip {
4
@include shadow-medium;
5
-
6
display: none;
7
position: absolute;
8
- z-index: 10;
+ z-index: 111;
9
background-color: $color-foreground;
10
padding: $spacing-small $spacing-medium-alt;
11
color: $color-text-on-foreground;
components/Visualization/HorizontalBar/index.js
@@ -365,7 +365,7 @@ class HorizontalBar extends PureComponent {
365
366
const bars = groups
367
.append('rect')
368
- .attr('x', 0)
+ .attr('x', 1)
369
.attr('y', d => this.y(labelSelector(d)))
370
.attr('height', this.y.bandwidth())
371
.style('fill', d => this.getColor(d))
0 commit comments