Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion holoviews/plotting/bokeh/annotation.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
line_properties,
text_properties,
)
from .util import BOKEH_GE_3_2_0, date_to_integer
from .util import BOKEH_GE_3_2_0, BOKEH_GE_3_9_0, date_to_integer

arrow_start = {'<->': NormalHead, '<|-|>': NormalHead}
arrow_end = {'->': NormalHead, '-[': TeeHead, '-|>': NormalHead,
Expand Down Expand Up @@ -189,6 +189,7 @@ class LabelsPlot(ColorbarPlot, AnnotationPlot):
'cmap',
'angle',
'text_outline_color',
*(("text_outline_width",) if BOKEH_GE_3_9_0 else ())
]

_nonvectorized_styles = [*base_properties, 'cmap']
Expand Down
1 change: 1 addition & 0 deletions holoviews/plotting/bokeh/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
BOKEH_GE_3_6_0 = BOKEH_VERSION >= (3, 6, 0)
BOKEH_GE_3_7_0 = BOKEH_VERSION >= (3, 7, 0)
BOKEH_GE_3_8_0 = BOKEH_VERSION >= (3, 8, 0)
BOKEH_GE_3_9_0 = BOKEH_VERSION >= (3, 9, 0)


if BOKEH_GE_3_8_0:
Expand Down
Loading