Skip to content

Commit

Permalink
Fix overlaying labels with sankey (#5864)
Browse files Browse the repository at this point in the history
Co-authored-by: Philipp Rudiger <[email protected]>
  • Loading branch information
ahuang11 and philippjfr authored Aug 28, 2023
1 parent e2f06d0 commit 42db40f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/bokeh/element.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ def _axis_props(self, plots, subplots, element, ranges, pos, *, dim=None,
specs = ((dim.name, dim.label, dim.unit),)
else:
if isinstance(self, OverlayPlot):
l, b, r, t = self.get_extents(range_el, ranges, dim)
l, b, r, t = self.get_extents(range_el, ranges, dimension=dim)
else:
l, b, r, t = self.get_extents(range_el, ranges)
if self.invert_axes:
Expand Down

0 comments on commit 42db40f

Please sign in to comment.