Skip to content

Commit

Permalink
Fix density plot height so tooltip displays correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
NateLanza committed Feb 11, 2025
1 parent 96334fb commit 9ccdce2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const DensityPlot: FC<Props> = ({
id="Density"
transform={`translate(0, ${-dimensions.attribute.plotHeight / 1.5})`}
>
<foreignObject width={dimensions.attribute.width} height={dimensions.attribute.plotHeight + 20}>
<foreignObject width={dimensions.attribute.width} height={dimensions.attribute.plotHeight}>
<MemoizedDensityVega
values={values}
fillColor={fillColor}
Expand Down

0 comments on commit 9ccdce2

Please sign in to comment.