We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e41fbe1 commit aa6e28cCopy full SHA for aa6e28c
src/mixed-line-bar-chart/bar-groups.tsx
@@ -46,7 +46,9 @@ export default function BarGroups<T extends ChartDataTypes>({
46
aria-label={ariaLabel}
47
aria-haspopup={true}
48
aria-expanded={isPopoverPinned}
49
- fill="none"
+ // We must use "transparent" instead of "none" so that Firefox popover placement works correctly.
50
+ // When an SVG element has no stroke or fill color the Firefox optimizes it out.
51
+ fill="transparent"
52
className={styles['bar-group']}
53
/>
54
))}
0 commit comments