Skip to content

Commit

Permalink
Fix 0pt bug in safari (#5755)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Jun 12, 2023
1 parent 41e6a40 commit 471941d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion holoviews/plotting/bokeh/chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,12 @@ def _axis_properties(self, axis, key, plot, dimension=None,
((not self.invert_axes and axis == 'x') or (self.invert_axes and axis =='y'))):
props['separator_line_width'] = 0
props['major_tick_line_alpha'] = 0
props['major_label_text_font_size'] = '0pt'
# The major_label_text_* is a workaround for 0pt font size not working in Safari.
# See: https://github.com/holoviz/holoviews/issues/5672
props['major_label_text_font_size'] = '1px'
props['major_label_text_alpha'] = 0
props['major_label_text_line_height'] = 0

props['group_text_color'] = 'black'
props['group_text_font_style'] = "normal"
if axis == 'x':
Expand Down

0 comments on commit 471941d

Please sign in to comment.